Jquery选择表中的所有复选框

前端之家收集整理的这篇文章主要介绍了Jquery选择表中的所有复选框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个脚本,应该检查表中的所有复选框.它首次检查它们,之后它会取消选中它们.但是,当我尝试重新检查它们什么也没有发生.

jquery

$('#selectAll').click(function(e){
    var table= $(e.target).closest('table');
    $('td input:checkBox',table).attr('checked',e.target.checked);
});

HTML:

<table>
    <tr>
        <th>
            <input type="checkBox" id="selectAll" />
        </th>
        <th>
            hi!
        </th>
    </tr>
    <tr>
        <td>
            <input type="checkBox" id="1"/>
        </td>
        <td>
            hi!
        </td>
    </tr>
    <tr>
        <td>
            <input type="checkBox" id="2"/>
        </td>
        <td>
            hi!
        </td>
    </tr>
</table>

这是一个行为的小提琴:

http://jsfiddle.net/EEJrU/

为什么点击一次后不起作用?

解决方法

您需要使用 .prop()而不是 .attr()
$('#selectAll').click(function(e){
    var table= $(e.target).closest('table');
    $('td input:checkBox',table).prop('checked',this.checked);
});

演示:Fiddle

Attributes vs. Properties

原文链接:https://www.f2er.com/jquery/179936.html

猜你在找的jQuery相关文章