我有一个带有许多输入的“表单”,在提交按钮中我调用了一个javascript函数来操作信息并通过ajax发送到php文件..
我可以添加一个没有动作网址的表单标签,用jquery validate验证我的“表单”吗?或者我必须手动进行验证?
谢谢!
答案 0 :(得分:8)
“我有一个带有许多输入的'表单',在提交按钮上我称之为 操纵信息并通过ajax发送到php的javascript函数 文件“
绝对要求您使用<form></form>
标记让jQuery Validate插件正常运行,或者根本不需要。
如果您使用ajax
,则必须put your ajax
inside the submitHandler
of the jQuery Validate plugin。请参阅下面的示例。
“我可以添加一个没有动作网址的表单标签来验证我的”表单“并使用jquery验证吗?”
是的,您可以删除或阻止action
并仍然使用jQuery Validate。
请参阅演示:http://jsfiddle.net/NEPsc/3/
将ajax
和return false
放入submitHandler
,不会定期提交:
$(document).ready(function() {
$('#myform').validate({ // initialize plugin
// your rules & options,
submitHandler: function(form) {
// your ajax would go here
return false; // blocks regular submit since you have ajax
}
});
});
修改强>:
根据OP的评论,要使用input type="button"
代替input type="submit"
,您需要使用click
处理程序。 无需任何内联JavaScript。完全删除onClick
功能。
查看更新的演示:http://jsfiddle.net/NEPsc/5/