我正在尝试将请求中的变量发送到同一页面,然后检查变量是否已设置。
$.ajax({
url: "index.php",
type: "POST",
data: {idss:idss},
success: function(data){
console.log("hello");
}
});
if(isset($_POST['idss'])){
echo "Set";
}
然而,当这个运行时,我只在控制台中看到“你好”,但我没有在页面上看到'echo'的输出。
我做错了吗?
答案 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>