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

jquery checbox 全选,反选

时间:2014-07-22 09:13:34      阅读:325      评论:0      收藏:0      [点我收藏+]

标签:io   cti   c   ar   type   jquery   

<body>

<input type="checkbox" id="ckAll" />check all<br />

<input type="checkbox" name="sub" />1<br />

<input type="checkbox" name="sub"/>2<br />

<input type="checkbox" name="sub"/>3<br />

<input type="checkbox" name="sub"/>4<br />

<script>

    $("#ckAll").click(function() {

        $("input[name=‘sub‘]").prop("checked", this.checked);

    });

    $("input[name=‘sub‘]").click(function() {

        var $subs = $("input[name=‘sub‘]");

        $("#ckAll").prop("checked" , $subs.length == $subs.filter(":checked").length ? true :false);

    });

</script>

</body>


jquery checbox 全选,反选,布布扣,bubuko.com

jquery checbox 全选,反选

标签:io   cti   c   ar   type   jquery   

原文地址:http://my.oschina.net/fedde/blog/288206

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