//反选
$.fn.checkNot = function(){
return this.each(function(){
if(typeof this.checked == ‘boolean’) this.checked = !this.checked;
})
}
//全选
$.fn.checkAll = function(){
return this.each(function(){
if(typeof this.checked != ‘undefined’) this.checked = true;
})
}
//全不选
$.fn.checkNone = function(){
return this.each(function(){
if(typeof this.checked == ‘boolean’ && this.checked) this.checked = false;
})
}
使用方法
$("#content :checkbox").checkNone() //checkAll ,checkNot
$.fn.checkNot = function(){
return this.each(function(){
if(typeof this.checked == ‘boolean’) this.checked = !this.checked;
})
}
//全选
$.fn.checkAll = function(){
return this.each(function(){
if(typeof this.checked != ‘undefined’) this.checked = true;
})
}
//全不选
$.fn.checkNone = function(){
return this.each(function(){
if(typeof this.checked == ‘boolean’ && this.checked) this.checked = false;
})
}
使用方法
$("#content :checkbox").checkNone() //checkAll ,checkNot