使用.serialize()的Jquery Ajax post会引发500内部错误

时间:2012-04-07 08:52:13

标签: jquery serialization post internal

我正在尝试在所有表单字段中创建一个简单的ajax表单。 它会发布字段,但会引发错误。我在firefox上检查了firebug,它显示了“500 Internal Error”

======

HTML

<form action="showResult.php" id="ShowResult">
  <input type="hidden" name="price" value="$110.99" />
  <input type="hidden" name="lang" value="English" />
  <input type="hidden" name="course" value="Course" />
  <input type="hidden" name="url" value="http://localhost/result.html" >
  <input type="hidden" name="id" value="pop30387" />

  <input type="button" id="postForm" value="Add items" />
</form>

======

脚本

$("#postForm").click(function() {
    $.post($('form').attr('action'), $('form').serialize());
});

0 个答案:

没有答案