欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

手机号的校验

程序员文章站 2022-07-02 16:29:49
$("body").on("click", ".submit_btn", function() { if (!$("#tel").val()) { alert("手机号不能为空"); $(this).attr("disabled", true); $(this).css({ background: ......
$("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();
});