$("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();
});