根据单击的提交运行 jqueryvalidationEngine 插件
我有一个像这样的表格。
<form name="theform" id="theform">
<input type="text" name="name">
<input type="submit" id="one">
<input type="submit" id="two">
</form>
我正在尝试使用此验证 http://www. position-absolute.com/articles/jquery-form-validator-because-form-validation-is-a-mess/
我需要发生的是,如果单击 id#two,则验证发生,如果 #one 是单击它只是提交表单。
我现在两个按钮都可以使用。我不知道如何使用这个插件来设置它来完成我需要它做的事情,因为这个插件将自身绑定到提交按钮。
$("#theform").validationEngine({
ajaxFormValidation: false,
onValidationComplete: function(form, status){
$('#ccformmain').submit();
}
});
任何帮助表示赞赏。
谢谢!
I have a form like so.
<form name="theform" id="theform">
<input type="text" name="name">
<input type="submit" id="one">
<input type="submit" id="two">
</form>
I am trying to use this validation
http://www.position-absolute.com/articles/jquery-form-validator-because-form-validation-is-a-mess/
What I need to happen is if id#two is clicked the validation occurs, if #one is clicked it just submits the form.
I have it working for both buttons right now. I am not sure how to set it up using this plugin to do what I need it to do because this plugin binds itself to the submit buttons.
$("#theform").validationEngine({
ajaxFormValidation: false,
onValidationComplete: function(form, status){
$('#ccformmain').submit();
}
});
Any help is appreciated.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以绑定到第二个按钮上的“单击”事件并分离验证引擎
You could bind to a 'click' event on the second button and detach the validationEngine