验证手机格式的js代码

function isMobil(s)
        {
            var patrn = /(^0{0,1}1[3|4|5|6|7|8|9][0-9]{9}$)/;
            if (!patrn.exec(s))
            {
                alert("1");
            }else{
                alert("0");
            }
        }

posted on 2013-07-25 18:12  you Richer  阅读(147)  评论(0编辑  收藏  举报