我有一些复选框
<input type="check" name="chkOption" id="one" />One
<input type="check" name="chkOption" id="two" />two
<input type="check" name="chkOption" id="three" />three
<input type="check" name="chkOption" id="four" />four
是否可以使用“jquery.validate”脚本验证“必需”此复选框中的任何一个,
答案 0 :(得分:1)
尝试使用此代码:
$.validator.addMethod("check", function(value, elem, param) {
if($(".roles:checkbox:checked").length > 0){
return true;
}else {
return false;
}
},"You must select at least one!");