我有一个复选框的集合
<input id="1" class="paid" type="checkBox" /> <input id="2" class="paid" type="checkBox" /> <input id="3" class="paid" type="checkBox" /> <input id="4" class="paid" type="checkBox" />
我想写一些jQuery检查是否所有复选框都选中,然后执行一个操作,但如何?
解决方法
喜欢这个:
if (!$('input.paid[type=checkBox]:not(:checked)').length) do('stuff');
这将检查是否有任何未被选中,并做的东西,如果没有(即,他们都被检查)。