如何在ajax中传递参数

时间:2014-06-23 12:03:03

标签: php ajax

我有一个工作正常的ajax脚本。一旦成功,我想传递像header这样的参数("位置:tar.php?php = $ value");

直到现在我才知道$(" body")。load(" rumour.php");帮我传递参数,就像我们在PHP中那样

    $.ajax ({
        type: "POST",
        url: "update_comment.php",
        data: { id1: id, comment1: comment },

            success: function(data) {
                $("body").load("rumour.php");
            }
   );

1 个答案:

答案 0 :(得分:1)

试试这个:

$("body").html(data);