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