分类:
前端
js:
function isPoneAvailable($poneInput) { var myreg=/^[1][3,4,5,7,8][0-9]{9}$/; if (!myreg.test($poneInput.val())) { return false; } else { return true; } }
1:以1为开头;
2:第二位可为3,4,5,7,8,中的任意一位;
3:最后以0-9的9个整数结尾。
评价