手机号验证正则表达式+Demo(亲测完毕)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了手机号验证正则表达式+Demo(亲测完毕)相关的知识,希望对你有一定的参考价值。
以下为本人亲测过的验证手机号格式的demo,需要的小伙伴拿走不谢~
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<!--这里换成你自己的jquery地址-->
<script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<style type="text/css">
#phone_msg{
color: red;
font-size: 12px;
}
</style>
</head>
<body>
<input type="text" id="phonenumber"/>
<button>点击跳转</button>
<p id="phone_msg"></p>
<script type="text/javascript">
$("button").click(function(){
// 获取输入框
var phoneInput = $("#phonenumber");
// 获取输入框内容
var phonenumber = $("#phonenumber").val();
// 验证手机号码格式
function isPoneAvailable(phoneInput){
var myreg=/^[1][3,4,5,7,8][0-9]{9}$/;
if (!myreg.test(phonenumber)) {
$("#phone_msg").html("请输入正确的手机号格式");
return false;
} else {
$("#phone_msg").html("验证成功,此条可不显示");
return true;
}
}
isPoneAvailable();
})
</script>
</body>
</html>
以上是关于手机号验证正则表达式+Demo(亲测完毕)的主要内容,如果未能解决你的问题,请参考以下文章