//全选或全不选
$("#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;
});
});