function chkRegThis() { if( $("form#sendForm #name").val() == "" ){ alert("請填寫姓名!"); $("form#sendForm #name").focus(); return false; } var email = Trim($("form#sendForm #email").val()); if(email == ""){ alert( "請填寫電子信箱!" ); $("form#sendForm #email").focus(); return false; }else{ if(!checkEmail(email)){ alert("您所填寫的電子信箱格式有誤,請重新填寫!"); $("form#sendForm #email").focus(); return false; } } if( $("form#sendForm #message").val() == "" ){ alert("請填寫聯絡事項!"); $("form#sendForm #message").focus(); return false; } //驗證碼 if( $("form#sendForm #code").val() == "" ){ alert("請填寫驗證碼!"); $("form#sendForm #code").focus(); return false; } $("form#sendForm submit").prop('disabled',true); $.ajax({ type: "POST", url: "ajax/send_contact.php", data: $("form#sendForm").serialize(), dataType: "json", cache: false, async: false, success: function(data) { if(data['status'] == "true"){ turn = true; alert('聯絡我們訊息送出成功'); location.reload(); }else{ alert(data['msg']); turn = false; $("form#sendForm submit").prop('disabled',false); reSIImage(); $('#code').val(''); } } }); return turn; }