使用jQuery,可以快速浏览具有 className =“carCheckboxes”的网页上的所有未选中复选框。
答案 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
});