JS 手机号 正则

JS 手机号 正则

var checkMobile = function(tel){
    var phoneReg = !!tel.match(/^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/);
    var telReg = !!tel.match(/^([0-9]{3,4}-)?[0-9]{7,8}$/);
    //console.log(phoneReg,telReg);
    if(phoneReg || telReg){
        return true;
    }else{
        return false;
    }
};