使用javascript发送帖子请求

时间:2013-12-25 02:35:35

标签: javascript php function html post

我目前正在使用javascript将帖子请求发送到我服务器上的PHP文件:

function insertComment(id, status) {
   $.post("http://test.com/includes/insert.php",{id:id, status:status});
}

但是,如何编辑我的代码,以便在发送post请求和加载insert.php时,代码会在调用了原始页面的DIV中加载insert.php的输出。 insertComment()功能。

1 个答案:

答案 0 :(得分:3)

你的php端应该输出一些结果,你的javascript端应该取结果并做点什么。

示例:

$.post("http://test.com/includes/insert.php",{id:id, status:status}, function(data) {
    $('#your_div').html(data);
});