发明一个jQuery v1.11.1下操纵checkbox状况的bug

在调试运用jQuery操纵checkbox的选中状况切换的时刻,发明了个bug:checkbox复选框在被选中再作废选中一次后,没法再次经由过程jQuery从新选中了。

假如发明不对,迎接斧正。假如晓得怎样处理这个题目,贫苦示知!

测试环境:

  • Chrome版本 47.0.2526.106 m

  • Opera版本 34.0.2036.25

  • jQuery版本 V1.11.1

html代码片断以下:

<label><input type="checkbox" name="options" value="1" />样例1</label>
<label><input type="checkbox" name="options" value="2" />样例2</label>
<label><input type="checkbox" name="options" value="3" />样例3</label>

jQeury代码为:

// 设置全选
$("input[type='checkbox']").attr("checked", "checked");

// 设置作废选中
$("input[type='checkbox']:checked").attr("checked", false);

经由测试, 无论是经由过程手动选中再作废选中,照样用上述代码设置选中再作废选中,用第一行代码都没法再次选中复选框。

然则运用JavaScript直接操纵每个dom的属性来设置,是能够一般的。这应当算是jQuery的题目吧?

$("input[type='checkbox']").each(function() {
    this.checked=true;      // 设置选中
    this.checked=false;     //  设置作废选中
})
    原文作者:Riemann_G
    原文地址: https://segmentfault.com/a/1190000004260038
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞