标签:号码 ntb code col return 手机 false bsp func
方法一:
function checkPhone(){
var phone = document.getElementById(‘phone‘).value;
if(!(/^1[3456789]\d{9}$/.test(phone))){
alert("手机号码有误,请重填");
return false;
}
}
方法二:
function checkPhone(){
var phone = document.getElementById(‘phone‘).value;
if(!(/^1(3|4|5|6|7|8|9)\d{9}$/.test(phone))){
alert("手机号码有误,请重填");
return false;
}
}
标签:号码 ntb code col return 手机 false bsp func
原文地址:https://www.cnblogs.com/sq652366/p/12912127.html