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.
如何取消选中所有复选框,除了表中的复选框,其 id 作为变量传递给使用 jquery 的函数
$(':checkbox:not(#'+idvar+')').prop('checked',false);
其中idvar包含您不想取消选中的复选框的 ID。
idvar
$("table").find(":checkbox").removeAttr("checked").end().find("checkboxid").attr("checked","checked");