小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

easyui validatebox 驗(yàn)證類型

 學(xué)海無涯GL 2015-04-19

required: "必選字段",
        remote: "請(qǐng)修正該字段",
        email: "請(qǐng)輸入正確格式的電子郵件",
        url: "請(qǐng)輸入合法的網(wǎng)址",
        date: "請(qǐng)輸入合法的日期",
        dateISO: "請(qǐng)輸入合法的日期 (ISO).",
        number: "請(qǐng)輸入合法的數(shù)字",
        digits: "只能輸入整數(shù)",
        creditcard: "請(qǐng)輸入合法的信用卡號(hào)",
        equalTo: "請(qǐng)?jiān)俅屋斎胂嗤闹?,
        accept: "請(qǐng)輸入擁有合法后綴名的字符串",
        maxlength: jQuery.format("請(qǐng)輸入一個(gè)長(zhǎng)度最多是 {0} 的字符串"),
        minlength: jQuery.format("請(qǐng)輸入一個(gè)長(zhǎng)度最少是 {0} 的字符串"),
        rangelength: jQuery.format("請(qǐng)輸入一個(gè)長(zhǎng)度介于 {0} 和 {1} 之間的字符串"),
        range: jQuery.format("請(qǐng)輸入一個(gè)介于 {0} 和 {1} 之間的值"),
        max: jQuery.format("請(qǐng)輸入一個(gè)最大為 {0} 的值"),
        min: jQuery.format("請(qǐng)輸入一個(gè)最小為 {0} 的值")

data-options="required:true,validType:'length[1,3]'" ;//輸入字符長(zhǎng)度1-3位

boolen b=$('#txt_Name').validatebox("isValid");//驗(yàn)證結(jié)果

 注意日期格式驗(yàn)證必須自己重寫,參考如下

 $.extend($.fn.validatebox.defaults.rules, {
            idcard: {// 驗(yàn)證身份證
                validator: function (value) {
                    return /^\d{15}(\d{2}[A-Za-z0-9])?$/i.test(value);
                },
                message: '身份證號(hào)碼格式不正確'
            },
            minLength: {
                validator: function (value, param) {
                    return value.length >= param[0];
                },
                message: '請(qǐng)輸入至少(2)個(gè)字符.'
            },
            length: { validator: function (value, param) {
                var len = $.trim(value).length;
                return len >= param[0] && len <= param[1];
            },
                message: "輸入內(nèi)容長(zhǎng)度必須介于{0}和{1}之間."
            },
            phone: {// 驗(yàn)證電話號(hào)碼
                validator: function (value) {
                    return /^((\d2,3)|(\d{3}\-))?(0\d2,3|0\d{2,3}-)?[1-9]\d{6,7}(\-\d{1,4})?$/i.test(value);
                },
                message: '格式不正確,請(qǐng)使用下面格式:020-88888888'
            },
            mobile: {// 驗(yàn)證手機(jī)號(hào)碼
                validator: function (value) {
                    return /^(13|15|18)\d{9}$/i.test(value);
                },
                message: '手機(jī)號(hào)碼格式不正確'
            },
            intOrFloat: {// 驗(yàn)證整數(shù)或小數(shù)
                validator: function (value) {
                    return /^\d+(\.\d+)?$/i.test(value);
                },
                message: '請(qǐng)輸入數(shù)字,并確保格式正確'
            },
            currency: {// 驗(yàn)證貨幣
                validator: function (value) {
                    return /^\d+(\.\d+)?$/i.test(value);
                },
                message: '貨幣格式不正確'
            },
            qq: {// 驗(yàn)證QQ,從10000開始
                validator: function (value) {
                    return /^[1-9]\d{4,9}$/i.test(value);
                },
                message: 'QQ號(hào)碼格式不正確'
            },
            integer: {// 驗(yàn)證整數(shù) 可正負(fù)數(shù)
                validator: function (value) {
                    //return /^[+]?[1-9]+\d*$/i.test(value);

                    return /^([+]?[0-9])|([-]?[0-9])+\d*$/i.test(value);
                },
                message: '請(qǐng)輸入整數(shù)'
            },
            age: {// 驗(yàn)證年齡
                validator: function (value) {
                    return /^(?:[1-9][0-9]?|1[01][0-9]|120)$/i.test(value);
                },
                message: '年齡必須是0到120之間的整數(shù)'
            },

            chinese: {// 驗(yàn)證中文
                validator: function (value) {
                    return /^[\Α-\¥]+$/i.test(value);
                },
                message: '請(qǐng)輸入中文'
            },
            english: {// 驗(yàn)證英語
                validator: function (value) {
                    return /^[A-Za-z]+$/i.test(value);
                },
                message: '請(qǐng)輸入英文'
            },
            unnormal: {// 驗(yàn)證是否包含空格和非法字符
                validator: function (value) {
                    return /.+/i.test(value);
                },
                message: '輸入值不能為空和包含其他非法字符'
            },
            username: {// 驗(yàn)證用戶名
                validator: function (value) {
                    return /^[a-zA-Z][a-zA-Z0-9_]{5,15}$/i.test(value);
                },
                message: '用戶名不合法(字母開頭,允許6-16字節(jié),允許字母數(shù)字下劃線)'
            },
            faxno: {// 驗(yàn)證傳真
                validator: function (value) {
                    //            return /^[+]{0,1}(\d){1,3}[ ]?([-]?((\d)|[ ]){1,12})+$/i.test(value);
                    return /^((\d2,3)|(\d{3}\-))?(0\d2,3|0\d{2,3}-)?[1-9]\d{6,7}(\-\d{1,4})?$/i.test(value);
                },
                message: '傳真號(hào)碼不正確'
            },
            zip: {// 驗(yàn)證郵政編碼
                validator: function (value) {
                    return /^[1-9]\d{5}$/i.test(value);
                },
                message: '郵政編碼格式不正確'
            },
            ip: {// 驗(yàn)證IP地址
                validator: function (value) {
                    return /d+.d+.d+.d+/i.test(value);
                },
                message: 'IP地址格式不正確'
            },
            name: {// 驗(yàn)證姓名,可以是中文或英文
                validator: function (value) {
                    return /^[\Α-\¥]+$/i.test(value) | /^\w+[\w\s]+\w+$/i.test(value);
                },
                message: '請(qǐng)輸入姓名'
            },
            date: {// 驗(yàn)證姓名,可以是中文或英文
                validator: function (value) {
                    //格式y(tǒng)yyy-MM-dd或yyyy-M-d
                    return /^(?:(?!0000)[0-9]{4}([-]?)(?:(?:0?[1-9]|1[0-2])\1(?:0?[1-9]|1[0-9]|2[0-8])|(?:0?[13-9]|1[0-2])\1(?:29|30)|(?:0?[13578]|1[02])\1(?:31))|(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:0[48]|[2468][048]|[13579][26])00)([-]?)0?2\2(?:29))$/i.test(value);
                },
                message: '清輸入合適的日期格式'
            },
            msn: {
                validator: function (value) {
                    return /^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/.test(value);
                },
                message: '請(qǐng)輸入有效的msn賬號(hào)(例:
            },
            same: {
                validator: function (value, param) {
                    if ($("#" + param[0]).val() != "" && value != "") {
                        return $("#" + param[0]).val() == value;
                    } else {
                        return true;
                    }
                },
                message: '兩次輸入的密碼不一致!'
            }
        });

//驗(yàn)證實(shí)例

<html xmlns="http://www./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.]" /><br />
    長(zhǎng)度驗(yàn)證:<input type="text" validtype="length[8,20]" invalidMessage="有效長(zhǎng)度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 />
    長(zhǎng)途驗(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: ""只能輸入漢字""
    },
    //移下手機(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)碼格局不正確.""
    },
    //國(guó)內(nèi)郵編驗(yàn)證
    zipcode: {
        validator: function (value) {
            var reg = /^[1-9]\d{5}$/;
            return reg.test(value);
        },
        message: ""郵編必須長(zhǎng)短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 = ""用戶名長(zhǎng)度必須在"" + param[0] + ""至"" + param[1] + ""局限"";
                return false;
            } else {
                if (!/^[\w]+$/.test(value)) {
                    $.fn.validatebox.defaults.rules.account.message = ""用戶名只能數(shù)字、字母、下劃線構(gòu)成."";
                    return false;
                } else {
                    return true;
                }
            }
        }, message: """"
    }
})

 

 

 

 

  checkname.aspx

 

 

<%@ Page Language="C#" %>
<script runat="server">
    void Page_Load(object sender, System.EventArgs e)
    {
        if (!string.IsNullOrEmpty(Request["name"]))
        {
            string name = "";
            name = Request["name"];
            if (name == "zhxhdean")
            {//當(dāng)文本框中值為 zhxhdean,提示用戶已存在。 這一步可以去數(shù)據(jù)庫查詢
                Response.Write("false");
                return;
            }
            else
            {
                Response.Write("true");
                return;
            }
        }
    }
</script>

 

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多