我目前正在使用javascript将帖子请求发送到我服务器上的PHP文件:
function insertComment(id, status) {
$.post("http://test.com/includes/insert.php",{id:id, status:status});
}
但是,如何编辑我的代码,以便在发送post请求和加载insert.php
时,代码会在调用了原始页面的DIV中加载insert.php
的输出。 insertComment()
功能。
答案 0 :(得分:3)
你的php端应该输出一些结果,你的javascript端应该取结果并做点什么。
示例:
$.post("http://test.com/includes/insert.php",{id:id, status:status}, function(data) {
$('#your_div').html(data);
});