0

我一直试图让我的表单将其结果提交到 PHP 文件,然后查询并输出结果。我的 PHP 文件使用通过标准 PHP $_GET 方法传递的变量的查询,但尝试使用 Jquery AJAX 传递我正在努力的值。任何帮助将不胜感激。这是我目前所处的位置:

HTML 文件

<div id="content">
  <div id="options">
    <form id="form1">
      <table>
        <tr>
          <td>Date:</td>
          <td><input name="date" type="text" id="datepicker" /></td>
        </tr>
        <tr>
          <td>Size:</td>
          <td><input name="size" type="text" /></td>
        </tr>
        <tr>
          <td colspan="2"><input name="submit" type="submit" value="Submit"/></td>
        </tr>
      </table>
    </form>
  </div>
  <div id="result"> </div>
</div>

我当前尝试在页面顶部插入我的脚本,我的 PHP 文件名为 details.php。

<script>
$('#form1').submit(function() {
  $.ajax({
    data: $(this).serialize(),
    type: $(this).attr('GET'), 
    url: $(this).attr('details.php'),
    success: function(response) {
      $('#result').html(response); 
    }
  });
  return false; // cancel original event to prevent form submitting
});
</script>

谢谢

4

1 回答 1

2
$('#form1').submit(function(e) {
    e.preventDefault(); // stops form from submitting naturally
    $.ajax({
        data: $(this).serialize(),
        //type: 'GET', //'GET' is default, set to 'POST' if you want.
        url: '/details.php',
        success: function(response) {
            $('#result').html(response); 
        }
    });
});
于 2012-05-23T22:05:56.487 回答