当前位置: 代码迷 >> Web前端 >> JQUERY兑现 checkBox全选/全不选/反选
  详细解决方案

JQUERY兑现 checkBox全选/全不选/反选

热度:87   发布时间:2012-10-07 17:28:51.0
JQUERY实现 checkBox全选/全不选/反选

//全选或全不选
$("#checkAll").click(function(){
     $("[name=items]:checkbox").each(function(){
          //全选
          $(this).attr("checked",true);
          //全不选
            $(this).attr("checked",false);
     });
});

//反选
$("#checkRev").click(function(){
     $("[name=items]:checkbox").each(function(){
          //Jquery实现反选
            $(this).attr("checked",!$(this).attr("checked"));
          //JS实现反选
            this.checked = !this.checked;
     });
});
  相关解决方案