我正在尝试在所有表单字段中创建一个简单的ajax表单。 它会发布字段,但会引发错误。我在firefox上检查了firebug,它显示了“500 Internal Error”
======
<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());
});