如何遍历所有未选中的复选框?

时间:2010-11-21 20:45:24

标签: javascript jquery checkbox

使用jQuery,可以快速浏览具有 className =“carCheckboxes”的网页上的所有未选中复选框。

1 个答案:

答案 0 :(得分:11)

.each()方法与:not(:checked)选择器一起使用。以下是参考资料:

Reference to jQuery.each method

Reference to jQuery:not selector

Reference to jQuery:checked selector

$("input.carCheckboxes:not(:checked)").each (function () {
  //your code to loop through each element.
  //$(this) references the current element as a jQuery Object
});