手机号的校验
程序员文章站
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();
});
上一篇: mongoDB基础知识(一)
下一篇: 基本流程图的制作-通过在线制图工具绘制