根据单击的提交运行 jqueryvalidationEngine 插件

发布于 2024-12-15 11:32:30 字数 799 浏览 1 评论 0原文

我有一个像这样的表格。

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

地狱即天堂 2024-12-22 11:32:30

您可以绑定到第二个按钮上的“单击”事件并分离验证引擎

$('#two').on("click", function () {
  $("#theform").validationEngine('detach');
});

You could bind to a 'click' event on the second button and detach the validationEngine

$('#two').on("click", function () {
  $("#theform").validationEngine('detach');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文