jQuery Validate限定輸入字串的長度

admin發表於2018-09-02
本章節介紹一下如何利用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>
$(document).ready(function () {
  $("#one").validate({
    rules: {
      username: {
        required: true,
        maxlength: 20
      },
      pw: {
        required: true,
        rangelength: [5, 15]
      },
      address: {
        required: true,
        minlength: 15
      }
    },
    messages: {
      username: {
        required: "使用者名稱是必填專案",
        maxlength: "使用者名稱最大長度不能超過20"
      },
      pw: {
        required: "密碼是必填專案",
        rangelength: "密碼的長度必須介於5-15之間"
      },
      address: {
        required: "地址是必填專案",
        minlength: "地址字元的長度不得少於15"
      }
    }
  });
});
</script>
</head>
<body>
<form id="one" action="http://www.softwhy.com/">
  <ul>
    <li>姓名:<input type="text" name="username"/></li>
    <li>密碼:<input type="password" name="pw"/></li>
    <li>住址:<input type="text" name="address"/></li>
    <li>
      <input type="submit" value="提交"/>
      <input type="reset" value="重置"/>
    </li>
  </ul>
  <label for="username"></label>
</form>
</body>
</html>

上面的程式碼實現了我們的要求,實現陣列字串長度的驗證效果。

相關文章