ID在您的文档中必须是唯一的,这意味着您 不应该这样 做:
<input type="checkbox" name="chk[]" id="chk[]" value="Apples" /><input type="checkbox" name="chk[]" id="chk[]" value="Bananas" />
<fieldset id="checkArray"> <input type="checkbox" name="chk[]" value="Apples" /> <input type="checkbox" name="chk[]" value="Bananas" /></fieldset>
现在是jQuery:
var atLeastoneIsChecked = $('#checkArray:checkbox:checked').length > 0;//there should be no space between identifier and selector// or, without the container:var atLeastoneIsChecked = $('input[name="chk[]"]:checked').length > 0;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)