2 回答
TA贡献1877条经验 获得超1个赞
在 json 对象中写入数据,请参见下面的代码
function details(id)
{
var id = id;
// alert(id);
$.ajax({
type: 'POST',
url: 'show.php',
data: {id:id},
success: function(data)
{
alert("hi");
}
});
}
TA贡献1772条经验 获得超5个赞
检查您的网络选项卡并检查发送参数列表。你不得不提到数据类型 json
尝试这个
function details(id)
{
var id = id;
// alert(id);
$.ajax({
type: 'POST',
url: 'show.php',
dataType: 'json',
data: {'id':id},
success: function(data)
{
alert("hi");
}
});
}
在你的 show.php
<?php
if (isset($_POST['id']))
{
$uid = $_POST['id'];
echo json_encode($uid);
}
?>
- 2 回答
- 0 关注
- 108 浏览
添加回答
举报