jQuery ajax请求同一页PHP不执行

时间:2014-05-22 13:51:56

标签: php jquery ajax

我正在尝试将请求中的变量发送到同一页面,然后检查变量是否已设置。

 $.ajax({
            url: "index.php",
            type: "POST",
            data:  {idss:idss},
            success: function(data){
                console.log("hello");
            }
        }); 

if(isset($_POST['idss'])){
    echo "Set";
}

然而,当这个运行时,我只在控制台中看到“你好”,但我没有在页面上看到'echo'的输出。

我做错了吗?

2 个答案:

答案 0 :(得分:2)

POST数据正在发送到ajax请求中的页面,而不是当前页面。 index.php会有POST数据集。

答案 1 :(得分:2)

   $.ajax({
            url: "index.php",
            type: "POST",
            data:  {idss:idss},
            success: function(data){
                console.log("hello");
                $('#here').html(data['whatever_you_returned']);
            }
        }); 

   <div id="here"></div>