在jquery1.4.1 版本下,可以全选和取消所有的checkbox:
$(".crm-checkbox").attr("checked", $("#chkAll").attr("checked"));
<input type=checkbox id='chkAll'/>
<input type = checkbox class='crm-checkbox'/>
<input type = checkbox class='crm-checkbox'/>
但是在1.6版本却不行了,因为在 1.4 版本 $("#chkAll").attr("checked") 返回值是 true false。
在1.6版本返回:checked 和 undefined。
在使用时注意处理返回值就可以了。