Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个每行一个复选框的表格,我想用 jQuery 选择所有复选框,但不是第一个具有 id='selectAll' 的复选框
我怎样才能做到这一点?
不使用:
$('input[type="checkbox"]').not('#selectAll')
或者,要选择除第一个以外的所有复选框,您也可以使用gt:
$('input[type="checkbox"]:gt(0)')
这样做的许多方法之一..
$(':checkbox', '#tableID').filter(function () { return this.id != 'selectAll'; }).prop('selected', true);
$('input[type="checkbox"]').not('#id')