码迷,mamicode.com
首页 > 其他好文 > 详细

联系电话正则表达式

时间:2014-06-15 22:44:27      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   ext   color   

 $(function () {
    $("#txtPhone").focus(function () {
        $(this).next().show().removeClass("onError").removeClass("onright").addClass("ontan").html("请输入你的联系电话");
    }).blur(function () {
        var patrn = /^(0[0-9]{2,3}\-)?([2-9][0-9]{6,7})+(\-[0-9]{1,4})?$|(^(13[0-9]|15[0|3|6|7|8|9]|18[8|9])\d{8}$)/;
        if ($(this).val() != "") {
            if (!patrn.exec($(this).val()))
                $(this).next().removeClass("ontan").addClass("onError").html("联系电话格式不正确");
            else
                $(this).next().removeClass("ontan").removeClass("onError").addClass("onright").html(" ");
        }
        else
            $(this).next().removeClass("ontan").addClass("onError").html("联系电话不能为空");

    });
})

 

联系电话正则表达式,布布扣,bubuko.com

联系电话正则表达式

标签:style   class   blog   code   ext   color   

原文地址:http://www.cnblogs.com/haozhenjie819/p/3785321.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!