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

checkbox 全选反选 获得所有的checkbox

时间:2017-12-05 17:51:30      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:rem   remove   attr   this   func   获得   cti   each   bsp   

1 $("#selectAll").click(function(){
2   $("input[name=‘checkbox‘]").each(function(){
3     if($(this).attr("checked")){
4          $(this).removeAttr("checked");
5       }else{
6           $(this).attr("checked","true");
7       }
8   })
9 });

 

checkbox 全选反选 获得所有的checkbox

标签:rem   remove   attr   this   func   获得   cti   each   bsp   

原文地址:http://www.cnblogs.com/shichaowen/p/7988054.html

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