我正在创建一个Web应用程序,其中包含一个用户提交给服务器的大表单。
此表单具有标准的jQuery验证,并且工作正常。 (http://bassistance.de/jquery-plugins/jquery-plugin-validation/)
但是,表单中间的部分将需要通过ajax调用提交。可以说表单的这一部分有一个简单的“添加”按钮 - 当按下添加按钮时,是否可以仅验证表单的这一部分?
在正常提交时验证表单的其余部分。我查看了jQuery Validation api并且看不到任何内容。
我以为我可以手动拨打电话:
$('#commentForm').validate({
rules : {
cname: {
required: true,
minlength: 2
}
}
}).element("#cname");
不幸的是,这会增加在按下主提交按钮时检查的验证。
非常感谢有关此事的任何帮助或建议:)
答案 0 :(得分:3)
这可能适合你。的 Link to jsfiddle 强>
HTML
<form id="commentForm" method="post" action="index.php" style="font-family: Georgia">
<fieldset>
<legend>The main form</legend>
<label for="text1">Text 1</label>
<input type="text" id="text1" name="text1" />
<br /><br />
<fieldset id="opt">
<legend>This section is only rquired when "Add" button is clicked</legend>
<label for="text2">Text 2</label>
<input type="text" id="text2" name="text2" />
<br /><br />
<button id="add">Add</button>
</fieldset>
<br />
<label for="text4">Text 4</label>
<input type="text" id="text4" name="text4" />
<br /><br />
<input type="submit" id="submit" value="Post Main Form" />
</fieldset>
</form>
$('#commentForm').validate({
//ignore everything in the sub-form
ignore: '#opt *',
rules: {
text1: {
required: true,
minlength: 2
},
text4: {
required: true,
minlength: 2
}
}
});
$('#add').click(function () {
var txt = $('#text2');
//here you add validation rules for sub-form elements
txt.rules('add', {
required: true
});
//here you trigger the validation for elements in subform
txt.valid();
/* here you do your ajax stuff */
return false;
});
这种方法用于jQuery验证器插件的ignore
选项以及.valid()
方法来手动触发元素验证。我希望它有所帮助。
此示例使用jQuery Validation Plugin - v1.10.0