码迷,mamicode.com
首页 > 移动开发 > 详细

手机号的校验

时间:2018-03-20 15:14:12      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:ack   ble   cti   .sh   this   false   pos   css   function   

$("body").on("click", ".submit_btn", function() {
if (!$("#tel").val()) {
alert("手机号不能为空");
$(this).attr("disabled", true);
$(this).css({ background: "#eddb23" });
return false;
}
if (!/^1\d{10}$/.test($("#tel").val())) {
alert("手机号格式不正确");
$(this).attr("disabled", true);
$(this).css({ background: "#eddb23" });
return false;
}
$(".bg_black").show();
});

手机号的校验

标签:ack   ble   cti   .sh   this   false   pos   css   function   

原文地址:https://www.cnblogs.com/muzi1/p/8608898.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!