码迷,mamicode.com
首页 > Web开发 > 详细

PHP全选按钮

时间:2016-05-10 12:27:30      阅读:445      评论:0      收藏:0      [点我收藏+]

标签:

<body>
<input type="checkbox"  id="qx"  onclick="qxx(this,‘qx‘)"/>全选
<input type="checkbox"  class="qx"  />内容
<input type="checkbox"  class="qx"  />内容
<input type="checkbox"  id="qy"  onclick="qxx(this,‘qy‘)"/>全选
<input type="checkbox"  class="qy"  />内容
<input type="checkbox"  class="qy"  />内容
</body>
<script>
function qxx(a,b)  //a代表点击的 b代表class名称
{
    var a=a.checked;
    var b=document.getElementsByClassName(b);
    for(var i=0;i<b.length;i++)
    {
        b[i].checked=a;
    }
}

</script>
</html>

 

PHP全选按钮

标签:

原文地址:http://www.cnblogs.com/zbxiaoxu/p/5477295.html

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