-3

如何取消选中所有复选框,除了表中的复选框,其 id 作为变量传递给使用 jquery 的函数

4

2 回答 2

2
$(':checkbox:not(#'+idvar+')').prop('checked',false);

其中idvar包含您不想取消选中的复选框的 ID。

于 2013-08-21T17:14:21.140 回答
0
$("table").find(":checkbox").removeAttr("checked").end().find("checkboxid").attr("checked","checked");
于 2013-08-21T17:17:09.230 回答