這篇文章主要介紹了easyui validatebox驗(yàn)證,需要的朋友可以參考下
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="easyui1.2.4/jquery-1.6.min.js" type="text/javascript"></script>
<script src="easyui1.2.4/jquery.easyui.min.js" type="text/javascript"></script>
<!--自定義驗(yàn)證-->
<script src="easyui1.2.4/validator.js" type="text/javascript"></script>
<link href="easyui1.2.4/themes/default/easyui.css" rel="stylesheet" type="text/css" />
<script>
$(function () {
//設(shè)置text需要驗(yàn)證
$('input[type=text]').validatebox();
})
</script>
</head>
<body>
郵箱驗(yàn)證:<input type="text" validtype="email" required="true" missingMessage="不能為空" invalidMessage="郵箱格式不正確" /><br />
網(wǎng)址驗(yàn)證:<input type="text" validtype="url" invalidMessage="url格式不正確[http://www.example.com]" /><br />
長度驗(yàn)證:<input type="text" validtype="length[8,20]" invalidMessage="有效長度8-20" /><br />
手機(jī)驗(yàn)證:<input type="text" validtype="mobile" /><br />
郵編驗(yàn)證:<input type="text" validtype="zipcode" /><br />
賬號(hào)驗(yàn)證:<input type="text" validtype="account[8,20]" /><br />
漢字驗(yàn)證:<input type="text" validtype="CHS" /><br />
遠(yuǎn)程驗(yàn)證:<input type="text" validtype="remote['checkname.aspx','name']" invalidMessage="用戶名已存在"/>
</body>
</html>
---------------------------------------------------------------------------
//自定義validator.js
//擴(kuò)展easyui表單的驗(yàn)證
$.extend($.fn.validatebox.defaults.rules, {
//驗(yàn)證漢字
CHS: {
validator: function (value) {
return /^[\u0391-\uFFE5]+$/.test(value);
},
message: '只能輸入漢字'
},
//移動(dòng)手機(jī)號(hào)碼驗(yàn)證
mobile: {//value值為文本框中的值
validator: function (value) {
var reg = /^1[3|4|5|8|9]\d{9}$/;
return reg.test(value);
},
message: '輸入手機(jī)號(hào)碼格式不準(zhǔn)確.'
},
//國內(nèi)郵編驗(yàn)證
zipcode: {
validator: function (value) {
var reg = /^[1-9]\d{5}$/;
return reg.test(value);
},
message: '郵編必須是非0開始的6位數(shù)字.'
},
//用戶賬號(hào)驗(yàn)證(只能包括 _ 數(shù)字 字母)
account: {//param的值為[]中值
validator: function (value, param) {
if (value.length < param[0] || value.length > param[1]) {
$.fn.validatebox.defaults.rules.account.message = '用戶名長度必須在' + param[0] + '至' + param[1] + '范圍';
return false;
} else {
if (!/^[\w]+$/.test(value)) {
$.fn.validatebox.defaults.rules.account.message = '用戶名只能數(shù)字、字母、下劃線組成.';
return false;
} else {
return true;
}
}
}, message: ''
}
})