我已经阅读了无数的例子,但我无法让以下工作。我想提交一个表单,在服务器端处理它然后决定加载到div中的哪个php脚本(我可以做动态加载)。
头:
$.ajax({
type: "POST",
url: url, // passed with onclick
data: $("#" + formName).serialize(),
success: function(data) {
// Some JSON? to go here to store variable returned from PHP ($thisVariable)
}
});
return false; // avoid to execute the actual submit of the form.
php:
// Process the request (add to database e.g.)
$thisVariable back to ajax