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

jQuery实现CheckBox全选、全不选

时间:2015-11-24 14:52:07      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 <html xmlns="http://www.w3.org/1999/xhtml">
 3 <head runat="server">
 4 <title>jQuery实现CheckBox全选、全不选</title>
 5 <script src="http://code.jquery.com/jquery-1.4.4.min.js" type="text/javascript"></script>    <script type="text/javascript">
 6         $(function() {
 7            $("#checkAll").click(function() {
 8                 $(input[name="subBox"]).attr("checked",this.checked); 
 9             });
10             var $subBox = $("input[name=‘subBox‘]");
11             $subBox.click(function(){
12                 $("#checkAll").attr("checked",$subBox.length == $("input[name=‘subBox‘]:checked").length ? true : false);
13             });
14         });
15     </script>
16  
17 </head>
18 <body>
19     <div>
20         <input id="checkAll" type="checkbox" />全选
21         <input name="subBox" type="checkbox" />项1
22         <input name="subBox" type="checkbox" />项2
23         <input name="subBox" type="checkbox" />项3
24         <input name="subBox" type="checkbox" />项4
25     </div>
26 </body>
27 </html>

 

jQuery实现CheckBox全选、全不选

标签:

原文地址:http://www.cnblogs.com/beiz/p/4991374.html

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