0

我正在尝试使用 jquery post 尝试将表单数据异步发送到将数据上传到我的数据库的 php 文件。

<!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
  <div id="contact_form">  
    <form id="contact" name="contact" method="post">  
  <fieldset>  
    <label for="name" id="name_label">Name</label>  
    <input type="text" name="name" id="name" size="30" value="" class="text-input" />  

    <label for="email" id="email_label">Return Email</label>  
    <input type="text" name="email" id="email" size="30" value="" class="text-input" />  

    <label for="phone" id="phone_label">Return Phone</label>  
    <input type="text" name="phone" id="phone" size="30" value="" class="text-input" />  

    <br />  
    <input type="submit" name="submit" class="button" id="submit_btn" value="Submit" />  
  </fieldset>  
</form>  
</div>  
  <div id="result"></div>

<script>
$(document).ready(function(){
/* attach a submit handler to the form */
$("#submit_btn").submit(function(event) {

  /* stop form from submitting normally */
  event.preventDefault();

 $.post("process.php", $("#contact").serialize());


  return false;
});
});
</script>

</body>
</html> 

我知道它是对数据进行串行编码,但我的 php 脚本没有接收到它,我不确定我做错了什么。我知道这很简单,但我已经为此工作了几天,似乎无法弄清楚。我明白如何在没有 jquery 的情况下做到这一点,但在这种情况下我真的需要它。这是我的php:

if(isset($_POST['submit']))
{
    $var_name = $_POST['name'];
    $var_email = $_POST['email'];
    $var_phone = $_POST['phone'];

//This establishes a connection to the database. It also says what to do if the connection fails.
try {
    $db_handle = new PDO("mysql:host=$server;dbname=$database", $db_username, $db_password);
    $db_handle->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

    $stmt = $db_handle->prepare('INSERT INTO contact(name, email, phone) VALUES(:name, :email, :phone)');   
    $stmt->execute(array(
        ':name' => $var_name,
        ':email' => $var_email,
        ':phone' => $var_phone,
        ));
    } catch(PDOException $e) {
    echo 'Error: ' . $e->getMessage();
    }
}
4

3 回答 3

1
$("contact").serialize()

应该:

$("#contact").serialize()

您的选择器不正确,因此您实际上并未向服务器发送任何内容。下次,在浏览器工具中检查请求。

于 2013-08-06T02:18:21.573 回答
0

http://api.jquery.com/serialize/

jquery API 声明提交按钮值不会被传递。因此,该帖子可能会很好地满足您的 php 请求,建议您查找必填字段,而不是在您的条件中查找 $_POST['submit']。

您还可以尝试在代码之前使用 var_dump($_POST) 并查看脚本的内容。

于 2013-08-06T02:56:46.637 回答
0

当您使用 jQuery 序列化表单时,不包括提交按钮,因此您应该替换

if(isset($_POST['submit']))

经过

if ($_SERVER['REQUEST_METHOD'] === 'POST')

编辑

更改$("#submit_btn").submit(...);方式$("#contact").submit(...);

于 2013-08-06T03:25:05.767 回答