jQuery Validate限定輸入字串的長度
本章節介紹一下如何利用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>
上面的程式碼實現了我們的要求,實現陣列字串長度的驗證效果。
相關文章
- 限定文字框輸入字串長度程式碼字串
- jQuery Validate限定輸入數字大小的範圍jQuery
- 表單限制字串輸入長度字串
- iOS學習筆記01 textfield 限定輸入的文字長度iOS筆記
- jQuery限制文字框輸入長度詳解jQuery
- 編寫一個程式求輸入字串的長度字串
- jQuery Validate限定上傳檔案的格式型別jQuery型別
- jQuery Validate限定核取方塊選中的數目jQuery
- 按位長度進行字串的分割輸出,長度不足補0字串
- iOS 限制textField輸入的長度iOS
- 讀取不定長字串輸入字串
- jQuery實現的擷取指定長度字串程式碼jQuery字串
- iOS Swift 輸入框限制長度iOSSwift
- javascript限制文字框輸入長度JavaScript
- 讓 Android 輸入框只能輸入固定長度的中英文Android
- 取字串長度字串
- QLineEdit限定只能輸入整數
- SQLPLUS 下輸入命令的字元長度限制SQL字元
- UITextView如何精準限制文字輸入長度UITextView
- ncurses輸入函式:字元+字串的輸入函式字元字串
- jQuery Validate的format()用法jQueryORM
- jQuery Validate success()jQuery
- Jquery--ValidatejQuery
- iOS開發若何更好的限制UITextField的輸入長度?iOSUI
- 輸入兩個長度相同的字串,比較兩個數在相同位置的字元是否相同字串字元
- 取字串左邊指定長度的子字串字串
- 取字串右邊指定長度的子字串字串
- Jquery Validate自定義驗證規則,一個漢字等於兩個字元長度jQuery字元
- element-ui 輸入框el-input 輸入長度限制元件不生效UI元件
- jQuery Validate addMethod()jQuery
- jQuery Validate errorPlacement()jQueryError
- jQuery Validate optional()方法jQuery
- jQuery Validate invalidHandler()jQuery
- 求字串中對稱的子字串的最大長度字串
- shell獲取字串長度字串
- 擷取指定長度字串長度程式碼例項字串
- vue---input只能輸入數字,且限制長度Vue
- wps的excel中的單元格限定輸入的內容Excel