2012-03-27 103 views
0

我有一些複選框jQuery驗證多個複選框

<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

看看有:http://stackoverflow.com/questions/3932723/jquery-checkbox-validation – 2012-03-27 10:21:04

+0

也http://stackoverflow.com/questions/1535187/jquery-validate-form-with-多複選框,在樂AST-一個必須待覈查 – 2012-03-27 10:26:46

回答

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!");​