码迷,mamicode.com
首页 > 其他好文 > 详细

复选框的选择与反选

时间:2016-10-26 22:34:41      阅读:404      评论:0      收藏:0      [点我收藏+]

标签:doc   document   index.php   type   store   val   java   nts   checkbox   

一 index.php

<!DOCTYPE html>
<html>
<head>

<script  language="JavaScript"  src="Jquery.js"></script>

    <title></title>
</head>
<body>
1<input type="checkbox" name="dept">
1<input type="checkbox" name="dept">
1<input type="checkbox" name="dept">
1<input type="checkbox" name="dept">
1<input type="checkbox" name="dept">
1<input type="checkbox" name="dept">
1<input type="checkbox" name="dept">
<input type="button" name="button1" value="全选" onclick=‘choose("opt")‘>
<input type="button" name="button1" value="反选" onclick=‘choose("fopt")‘>
</body>
</html>

Jquery.js代码


function choose(dept)
{
    store=document.getElementsByName("dept");
    if(dept=="opt")
    {
    for(i=0;i<store.length;i++)
    {

        store[i].checked=true;

    }
}
else if(dept=="fopt")
{
    for(i=0;i<store.length;i++)
    {
        store[i].checked = !store[i].checked;
    }
}



}



 

复选框的选择与反选

标签:doc   document   index.php   type   store   val   java   nts   checkbox   

原文地址:http://www.cnblogs.com/chouxiaoyademeng/p/6001981.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!