JQuery checkbox全选的小例子

发布时间:2020-06-22编辑:脚本学堂
本文介绍下,jquery实现checkbox复选框全选的小例子,有需要的朋友参考下。

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。

在使用时注意处理返回值就可以了。