所以我从数据库中提取了一些评论并回显到 div 中。
我正在通过表单输入新评论,并使用 ajax 将它们插入到数据库中。
我希望 div 中的评论在发布后立即更新并显示新评论。
如何刷新 div 以显示新内容,而无需再次加载页面?
javascript是这样的:
// ... goes after Validation
if (check == true) {
$.ajax({
type: "POST",
url: "process/addcomment.php",
data: $targetForm.serialize(),
dataType: "json",
success: function(response){
if (response.databaseSuccess)
$comment.after('<div class="success">Update Added!</div>');
else
$comment.after('<div class="error">Something went wrong!</div>');
}
});
}
return false;
});
});
谢谢你的帮助。