js验证手机号码

function chMobilePhone(src)
{
 
   if(/^13\d{9}$/g.test(src)||(/^15[8,9]\d{8}$/g.test(src))){
         return true;
    }else{
        return false;
   }
}

你可能感兴趣的:(js)