首页 > 代码库 > javascript 正则匹配手机号码
javascript 正则匹配手机号码
<form class="form-horizontal" name="mobileform" style="padding:10px;" onSubmit="return checkMobile();">
<div class="span12">
<span class="pull-left title-ipone">手机号:</span>
<input class="span10 pull-right" name="mobile" type="number" placeholder="请输入手机号"/>
</div>
<div class="text-center span12 ml0">
<button type="submit" class="btn btn-warning" style="margin-top:20px;">查 询</button>
</div>
</form>
javascript 代码:
function checkMobile(){ var sMobile = document.mobileform.mobile.value if(sMobile==‘‘){ alert(‘请输入手机号‘); }else if(!(/^1[3|5][0-9]\d{4,8}$/.test(sMobile))){ alert("请输入正确的手机号码"); document.mobileform.mobile.focus(); return false; } }
javascript 正则匹配手机号码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。