jQuery Validate驗證確認密碼是否相同

admin發表於2018-10-28
在使用者註冊的時候,通常要確認兩次填寫的密碼是否相同。

Validate外掛提供這樣的功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
ul li{
  list-style:none;
  margin-top:5px;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script src="http://www.softwhy.com/demo/jQuery/js/jquery.validate.js"></script>
<script src="http://www.softwhy.com/demo/jQuery/js/messages_zh.js"></script>
<script>
jQuery.validator.addMethod("checkSize", function (value, element, param) {
  var fileSize = element.files[0].size;
  if (fileSize > param) {
    return false;
  } else {
    return true;
  }
}, "請上傳大小在1M一下的檔案");
  
$(document).ready(function () {
  $("#one").validate({
    rules: {
      username: "required",
      pw1: {
        required: true,
      },
      pw2: {
        required: true,
        equalTo: "#pw1"
      }
    },
    messages: {
      username:"姓名是必填的",
      num: {
        pw1: "密碼是必填的",
      },
      pw2: {
        required: "確認密碼是必填的",
        equalTo:"確認密碼與密碼不同"
      }
    }
  });
});
</script>
</head>
<body>
<form id="one"action="http://www.softwhy.com/">
  <ul>
    <li>姓名:<input type="text" name="username"/></li>
    <li>密碼:<input type="password" id="pw1" name="pw1" /></li>
    <li>確認:<input type="password" id="pw2"  name="pw2"/></li>
    <li>
      <input type="submit" value="提交"/>
      <input type="reset" value="重置"/>
    </li>
  </ul>
</form>
</body>
</html>

上面的程式碼實現了我們的要求,非常的簡單使用equalTo規則即可實現。

相關文章