的HTML:
<div id="appcheck">
<input class="precheck" type="checkbox" />
<input class="precheck" type="checkbox" />
<input class="precheck" type="checkbox" />
</div>
应该发现未经检查的结果的 jQuery。not checked
无论选中多少个框,总是返回 3 。
$('input.precheck').each(function() {
if($(this).not(':checked')) {
console.log('not checked');
}
});