我正在使用 JQuery 和 AJAX 提交和处理表单。我想在处理表单(AJAX url:comment.php)中添加内容。我怎样才能做到这一点?我知道我将不得不使用 Success: function()。
我的 AJAX:
$.ajax({
type: "POST",
url: "comment.php",
data: dataString,
success: function () {
//code to prepend the content from comment.php
}
});
我的 Comment.php 文件:
//Some processing code
<p> Success!! </p>
谢谢!