jQuery Validate限定輸入數字大小的範圍

admin發表於2018-09-02
本章節介紹一下如何設定輸入數字的大小範圍。

程式碼例項如下:

[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: {
      age: {
        required: true,
        range:[18,40]
      },
      num: {
        required: true,
        min: 12
      },
      score: {
        required: true,
        max: 100
      }
    },
    messages: {
      age: {
        required: "年齡必須填寫",
        range: "年齡必須介於18-40之間"
      },
      num: {
        required: "數目為必填",
        min: "數目最少為12"
      },
      score: {
        required: "分數為必填",
        max: "不得高於100分"
      }
    }
  });
});
</script>
</head>
<body>
<form id="one"action="http://www.softwhy.com/">
  <ul>
    <li>年齡:<input type="text" name="age"/></li>
    <li>數目:<input type="text" name="num" /></li>
    <li>分數:<input type="text" name="score"/></li>
    <li>
      <input type="submit" value="提交"/>
      <input type="reset" value="重置"/>
    </li>
  </ul>
</form>
</body>
</html>

上面的程式碼實現了限定功能,非常的簡單不多介紹。

相關文章