注意:区号验证3-4位数字,中间座机号码验证7-8位数字, 后面分机号验证1-5位数字。 regFun(){ let phone = 021-88888999-1234; //你输入的电话号码 let regexp=/^((\d{3,4}\-)|)\d{7,8}(|([-\u8f6c]{1}\d{1,5}))$/; //正则 if(regexp.test(phone)){ console.log(phone+‘---验证通过‘) }else{ console.log(phone+‘---验证未通过‘) } }
原文地址:https://www.cnblogs.com/kevin0312/p/12565096.html
时间: 2024-11-07 23:27:39