【问题标题】:jquery validation multiple checkboxjQuery验证多个复选框
【发布时间】:2012-03-27 19:24:41
【问题描述】:

我有一些复选框

<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”脚本验证“必需”复选框中的任何一个,

【问题讨论】:

标签: jquery jquery-validate


【解决方案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!");​

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2012-01-27
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-01-06
    相关资源
    最近更新 更多