一、下載依賴包網盤下載:https://yunpan.cn/cryvgGGAQ3DSW 訪問密碼 f224二、 添加一個另外一個插件jquery.validate.messages_cn.js。改變預設提示方式。/* * Translated default messages for the jQu...
一、下載依賴包
網盤下載:https://yunpan.cn/cryvgGGAQ3DSW 訪問密碼 f224
二、 添加一個另外一個插件jquery.validate.messages_cn.js。
改變預設提示方式。
/* * Translated default messages for the jQuery validation plugin. * Language: CN * Author: Fayland Lam <fayland at gmail dot com> */ jQuery.extend(jQuery.validator.messages, { required: "必選欄位", remote: "請修正該欄位", email: "請輸入正確格式的電子郵件", url: "請輸入合法的網址", date: "請輸入合法的日期", dateISO: "請輸入合法的日期 (ISO).", number: "請輸入合法的數字", digits: "只能輸入整數", creditcard: "請輸入合法的信用卡號", equalTo: "請再次輸入相同的值", accept: "請輸入擁有合法尾碼名的字元串", maxlength: jQuery.format("請輸入一個長度最多是 {0} 的字元串"), minlength: jQuery.format("請輸入一個長度最少是 {0} 的字元串"), rangelength: jQuery.format("請輸入一個長度介於 {0} 和 {1} 之間的字元串"), range: jQuery.format("請輸入一個介於 {0} 和 {1} 之間的值"), max: jQuery.format("請輸入一個最大為 {0} 的值"), min: jQuery.format("請輸入一個最小為 {0} 的值") });
三、jQuery表單驗證插件----通過name屬性來關聯欄位來驗證,將校驗規則寫到 js 代碼中。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery表單驗證插件----通過name屬性來關聯欄位來驗證</title> <script src="../../scripts/jquery-1.3.1.js" type="text/javascript"></script> <script src="lib/jquery.validate.js" type="text/javascript"></script> <script src="lib/jquery.validate.messages_cn.js" type="text/javascript"></script> <style type="text/css"> * { font-family: Verdana; font-size: 96%; } label { width: 10em; float: left; } label.error { float: none; color: red; padding-left: .5em; vertical-align: top; } p { clear: both; } .submit { margin-left: 12em; } em { font-weight: bold; padding-right: 1em; vertical-align: top; } </style> <script type="text/javascript"> $(document).ready(function(){ $("#commentForm").validate({ rules: { username: { required: true, minlength: 2 }, email: { required: true, email: true }, url:"url", comment: "required" } }); }); </script> </head> <body> <form class="cmxform" id="commentForm" method="get" action=""> <fieldset> <legend>jQuery表單驗證插件----通過name屬性來關聯欄位來驗證</legend> <p> <label for="cusername">姓名</label> <em>*</em><input id="cusername" name="username" size="25" /> </p> <p> <label for="cemail">電子郵件</label> <em>*</em><input id="cemail" name="email" size="25" /> </p> <p> <label for="curl">網址</label> <em> </em><input id="curl" name="url" size="25" value="" /> </p> <p> <label for="ccomment">你的評論</label> <em>*</em><textarea id="ccomment" name="comment" cols="22"></textarea> </p> <p> <input class="submit" type="submit" value="提交"/> </p> </fieldset> </form> </body> </html>