1

我有一个相当基本的电子邮件表格

<form name="contactform" method="post" action="send_email.php" id="email_form">
  <div class="ContactHeaders">Name</div>
  <input type="text" name="Name" class="ContactBoxes" id="name"/><br/><br/>
  <div class="ContactHeaders">Email</div>
  <input type="email" name="Email" class="ContactBoxes"/><br/><br/>
  <div class="ContactHeaders">Message</div>
  <div style="width:100%">
    <textarea name="Message" maxlength="1000"></textarea><br/>
  </div>
  <div style="width: 100%">
    <input type="submit" class="Submitbtn" value="Submit">
  </div>
</form>

这是'send_email.php'

<?php
ob_start();
include 'navbar.php';
ob_end_clean();

if(isset($_POST['Email'])) {

  //declare variables
  $Name = $_POST['Name'];
  $Email = $_POST['Email'];
  $Message = $_POST['Message'];
  $complete = 0;
  $email_to = "someone@example.com";
  $email_subject = "Website Contact";

  //check all forms are filled in correctly

  $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
  if(preg_match($email_exp,$Email)) {
     $complete++;
     }
  $string_exp = "/^[A-Za-z .'-]+$/";
  if(preg_match($string_exp,$Name)) {
     $complete++;
     }
  if(strlen($Message) > 20) {
     $complete++; 
     } 
  //send email if $complete = 4
  if ($complete == 3){
      if (get_magic_quotes_gpc()) {
          $Message = stripslashes($Message);
      }
  $Message =  $Message . "\n\n" . "From " . $Name;
  $headers = 'From: '.$Email."\r\n".
 'Reply-To: '.$Email."\r\n" .
 'X-Mailer: PHP/' . phpversion();
 @mail($email_to, $email_subject, $Message, $headers);
 echo '<script>
     alert("Thank you for contacting me. I will be in touch shortly");
     top.location="index.php";
     </script>';
 }
 else {
     echo '<script>
             alert("The form you submitted is invalid. Please ensure the following: \n  You have provided a valid email address. \n  Your phone number is entered correctly. \n  The message box contains at least 20 characters.")
             history.go(-1)
          </script>';
    }
}

?>

所以我的问题是,当表单提交到php文件时,浏览器加载php文件,运行代码并返回结果(这不是真正的问题,但这是我不想要的)然后由java来显示警报并返回一个(无论如何在我的代码中)。有没有办法让它在后台运行代码,以便表单运行 php 文件而不必去它(如果有意义的话)并在同一个窗口中返回结果。我显然环顾四周,发现了很多关于 AJAX 的东西,但我并不真正理解它,也无法让它为我工作。

这样做的原因有点复杂,但就我的网站的用户友好性和看起来更干净(进入空白页面并显示警报看起来不太好)而言,这会使事情变得更容易。

提前感谢您可以为我提供的任何帮助:)

4

1 回答 1

0
$('.Submitbtn').click(function(e) {
    e.preventDefault();
    // do some form validation here
    if form is valid { // from validation above
        var formData = $('#email_form').serialize();
        $.post('send_email.php',{data:formData});
    } else {
        alert('Form no good - fix it!');
        return false;
    }
});

您可以从这里开始。这是非常基本的,但为开始您的 AJAX 冒险提供了必要的基础。

50 个优秀的 AJAX 教程

于 2013-07-10T00:58:16.670 回答