0
的長度,我不想再重複jQuery的接受檢查列表,而不是檢查列表和複選框
jQuery("#checkboxList input:checkbox:checked").length
jQuery("#checkboxList input:checkbox:checked")
jQuery("#checkboxList input:checkbox:not(:checked)")
我希望有一個更優雅的solution.Where我只能通過checked
,not checked
,length
PARAMS獲得預期的結果。就像這樣:
var checkboxList = jQuery("#checkboxList input:checkbox");
checkboxList.get(":checked")
checkboxList.get(":not(:checked)")
checkboxList.get(":checked").length
<div id="checkboxList">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
</div>