我正在使用jQuery表单validation plugin。我的问题是我想用它来检查所有字段是否有效,然后运行我的自定义javascript。
请参阅以下示例:
if(valid){
//enable save button
//if user accept terms(by using check the check box)
} else {
return false;
}
答案 0 :(得分:1)
假设您的表单的ID为my-form-id
,请先致电:
$("#my-form-id").validate();
这会验证表格。然后你就可以做到:
if($("#my-form-id").valid()){
//enable save button
//if user accept terms(by using check the check box)
} else {
return false;
}
请在此处查看完整文档:http://jqueryvalidation.org/valid