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

多选框的全选与取消

时间:2015-07-01 10:00:06      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <script type="text/javascript" src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
    <script type="text/javascript">
    $(function(){
        var checkbox = $(‘input[name=checkbox]‘);
        $(‘.selectAll‘).on("click",function(){
            checkbox.prop(‘checked‘, this.checked);
        });
        checkbox.on("click",function(){
            var _tmp = checkbox;
            $(".selectAll").prop(‘checked‘,_tmp.length == _tmp.filter(":checked").length);
        });
        //或者使用下述方法
        // checkbox.on("click",function(){
        //  var flag = true;
        //  checkbox.each(function(){
        //      if (!this.checked) {
        //          flag = false;
        //      };
        //  })
        //  if (flag) {
        //      $(‘.selectAll‘).prop(‘checked‘, true)
        //  }else{
        //      $(‘.selectAll‘).prop(‘checked‘, false)
        //  }
        // })
    })
    </script>
</head>
<body>
    <input type="checkbox" class="selectAll">全选/全不选<br/>
    <input type="checkbox" name="checkbox" /><br/>
    <input type="checkbox" name="checkbox" /><br/>
    <input type="checkbox" name="checkbox" /><br/>
    <input type="checkbox" name="checkbox" /><br/>
    <input type="checkbox" name="checkbox" /><br/>
    <input type="checkbox" name="checkbox" /><br/>
</body>
</html>

多选框的全选与取消

标签:

原文地址:http://www.cnblogs.com/dl30373/p/4612327.html

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