可能重复:
通过jquery一起提交表单和变量
我正在使用以下代码通过 ajax、jquery 将表单数据发送到服务器:
// this is the id of the submit button
$("#submitButtonId").click(function() {
var url = "path/to/your/script.php"; // the script where you handle the form input.
$.ajax({
type: "POST",
url: url,
data: $("#idForm").serialize(), // serializes the form's elements.
success: function(data)
{
alert(data); // show response from the php script.
}
});
return false; // avoid to execute the actual submit of the form.
});
如果我必须发送我自己的参数/值而不是发布表单数据,我该怎么做?谢谢。