为什么我的表单验证不工作(onsubmit不触发)



我正在编写一个简单的注册屏幕,允许用户输入他们的电子邮件地址和密码。作为标准,我让用户输入他们的电子邮件地址和密码两次来确认。但是,我的表单上的onsubmit属性似乎没有执行。

代码如下:

<<p> 字段/strong>
 <form name="form" id="form" action="" onsubmit="return validateForm()" class="form col-md-12 center-block" method="POST">
     <div class="form-group">
          <input type="text" class="form-control input-lg" name="name" id="name" placeholder="Full Name">
     </div>
     <div class="form-group">
          <input type="text" class="form-control input-lg" name="email" id="email" placeholder="Email Address">
     </div>
     <div class="form-group">
          <input type="text" class="form-control input-lg" name="cemail" id="cemail" placeholder="Confirm Email Address">
     </div>
     <div class="form-group">
          <input type="password" class="form-control input-lg" name="password" id="password" placeholder="Password">
     </div>
     <div class="form-group">
          <input type="password" class="form-control input-lg" name="cpassword" id="cpassword" placeholder="Confirm Password">
     </div>
     <div class="form-group">
          <button class="btn btn-primary btn-lg btn-block" form="form" type="submit" name="register" id="register">Register</button>
          <span class="pull-right"><a href="login.php">Login</a></span><br>
     </div>
 </form>
JavaScript

<script>
    function validateForm() {
      if (isSame(document.getElementById("email"), document.getElementById("cemail"))
       && isSame(document.getElementById("password"), document.getElementById("cpassword"))) {
        return true;
    } else {
      alert("Confirmation fields do not match, please retype and try again.");
      return false;
    }
    function isSame(elementA, elementB) {
      if (elementA.value.trim() == elementB.value.trim()) return true;
      else return false;
    }
    //ignore this 
    function submitForm() {
      document.getElementById("form").submit();
    }
</script>

我已经尝试调试尽可能多,但它似乎不像我的提交按钮是触发表单的onsubmit。我已经查看了请求日志,并且它发布的数据很好,但是。

提前感谢!

您的代码缩进是不正确的:您在validateForm函数的末尾缺少}

语法错误;第一个函数没有右括号

同样,你的isSame函数不需要if语句。

希望这对你有帮助:

JS:

function validateForm() {
    if(isSame(document.getElementById("email"), document.getElementById("cemail"))
      && isSame(document.getElementById("password"), document.getElementById("cpassword"))) {
        return true;
    }else{
        alert("Confirmation fields do not match, please retype and try again.");
        return false;
    }
}
function isSame(elementA, elementB) {
  return elementA.value.trim() == elementB.value.trim();
}

最新更新