继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

jquery checkbox 全选和反选

ajax快速入门培训基础
关注TA
已关注
手记 284
粉丝 176
获赞 719

两种方法,第一种用jquery的toggle,但这种方法有瑕疵,其它的倒是全选了,可它自己本是却不能选择...只能用第二种方法bind一个click事件,然后判断了

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script>
$(function(){
      //方法一
      /*
      $("#checkAll").toggle(
         function(){
           $.each($("input[type='checkbox']"), function(){$(this).attr("checked",true);},
         function(){$.each($("input[type='checkbox']"), function(){$(this).attr("checked",false);}
       );
       */
      //方法二
      $("#checkAll").bind("click",function(){
       if($("#checkAll").attr("checked")){
           $("#margin_total").hide();
           $.each($("input[type='checkbox']"), function(){$(this).attr("checked",true);});
       }else{
           $("#margin_total").show();
           $.each($("input[type='checkbox']"), function(){$(this).attr("checked",false);});
       }
      })
})

</script>
<html>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
   <tr>
       <th><input id="checkAll" type="checkbox" /></th>
       <th> - </th>
       <th> - </th>
   </tr>
   <tr>
      <td><input type="checkbox" /></td>
      <td> - </td>
      <td> - </td>
   </tr>
   <tr>
      <td><input type="checkbox" /></td>
      <td> - </td>
      <td> - </td>
   </tr>
   <tr>
      <td><input type="checkbox" /></td>
      <td> - </td>
      <td> - </td>
   </tr>
</table>
</body>
</html>

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP