手机号码的正则表达式
答案:2 悬赏:60 手机版
解决时间 2021-05-02 17:16
- 提问者网友:放下
- 2021-05-02 10:41
求javasecrpt手机号码的正则表达式。第一位数一定要是1.第二位可以是3.5.8。后面的无所谓。
最佳答案
- 五星知识达人网友:廢物販賣機
- 2021-05-02 12:18
/1[3,5,8]\d{9}/
全部回答
- 1楼网友:山河有幸埋战骨
- 2021-05-02 13:14
function test_mobile(strInput) { var myReg = /^(130|131|132|133|134|135|136|137|138|139|150|151|153|158|159|188|189)\d{8}$/; if (myReg.test(strInput)) return true; return false; }
用法
var theForm = document.forms[0]; if (!theForm) { theForm = document.Form1; }
if (!test_mobile(theForm.txt_mobile.value)) { alert('请输入正确的手机号码!'); theForm.txt_mobile.focus(); return false; }
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯