bootstrap中checkbox全选,反选

	$("#selectAll").click(function () { 
		$("#owners input:checkbox").each(function () {   
			$(this).prop('checked', true);//

	    }); 
	}); 
	
	$("#unSelect").click(function () {   
		   $("#owners input:checkbox").removeAttr("checked");  
		}); 
	
	$("#reverse").click(function () {  
	    $("#owners input:checkbox").each(function () {   
	    	this.checked = !this.checked;  
	    }); 
	}); 


注:

.attr('checked):   //看版本1.6+返回:”checked”或”undefined” ;1.5-返回:true或false
.prop('checked'): //16+:true/false


   
   
  


你可能感兴趣的:(bootstrap中checkbox全选,反选)