如何比较两个 val()

发布于 2024-11-24 14:53:30 字数 435 浏览 0 评论 0原文

我正在使用 JQuery 从表单中获取值。当我提交表单时,我想检查用户是否已输入同一电子邮件两次以及电子邮件的格式是否正确。我不知道该怎么做。这是我的 if 子句,萤火虫抱怨:

   $('#subscribe_now').submit(function(event) {


    regExp = /^[^@]+@[^@]+$/;

       if(($('#email1').val().search(regExp) == -1) || ($('#email1').val() != $('#email2').val()))) 
             return false;
        }
        else
        {
             return true
        }
     }

我应该怎么做?

先感谢您!

I'm using JQuery to get values from a form. When I submit the form I want to make a check on that the user has enterd the same e-mail twice and that the format is correct of the email. I can't figure out how to do it. Here's my if-clause which firebug complains at:

   $('#subscribe_now').submit(function(event) {


    regExp = /^[^@]+@[^@]+$/;

       if(($('#email1').val().search(regExp) == -1) || ($('#email1').val() != $('#email2').val()))) 
             return false;
        }
        else
        {
             return true
        }
     }

How should I do this?

Thank you in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

你与昨日 2024-12-01 14:53:30
$('#idOfForm').submit(function () {
    if ($('#email1').val() != $('#email2').val()) {
        // display error
        return false; // Prevent form submitting
    }
})
$('#idOfForm').submit(function () {
    if ($('#email1').val() != $('#email2').val()) {
        // display error
        return false; // Prevent form submitting
    }
})
倾`听者〃 2024-12-01 14:53:30

我会考虑使用 jQuery 验证插件 您可以使用 equalTo() 让您的生活更轻松。

I would consider using the jQuery Validate Plugin You can use rules like equalTo() to make your life much easier.

无需解释 2024-12-01 14:53:30

您应该使用 submit 事件:

$('#your_form_id').submit(function(){

   var errors = Array(); // used to display or alert() errors

   if($('#email1').val() != $('#email2').val()) {
      errors.push("Email verification don't match");
   }

   // do something else, like checking user login length, ...
   // and add errors to the array

   // if there are errors, don't submit
   if(errors.length > 0) {
      // display error by inserting in html, or display with alert()
      return false; // cancel event
   }
});

You should use the submit event:

$('#your_form_id').submit(function(){

   var errors = Array(); // used to display or alert() errors

   if($('#email1').val() != $('#email2').val()) {
      errors.push("Email verification don't match");
   }

   // do something else, like checking user login length, ...
   // and add errors to the array

   // if there are errors, don't submit
   if(errors.length > 0) {
      // display error by inserting in html, or display with alert()
      return false; // cancel event
   }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文