在jquery中应该使用prop方法来获取和设置checked属性,不应该使用attr。

$("#checkAll").prop("checked", true); 
$("#checkAll").prop("checked", false);
04-30 08:00