Jquery,post方法的问题,为什么传过去的值不能输出?

2024-12-29 15:19:01
推荐回答(1个)
回答1:

你还没有搞清楚 post 和 load 的用法,在你的例子中这两者你只需要二选一。


$i 不输出是因为你在 jQuery 中根本没有将 name 传给 PHP。


使用 post
// name 为 key,和 PHP 中的 $_POST['name'] 对应
// m 为 value,$_POST['name'] 的值
// data 为返回数据
$.post("googleChartUse.php", {name: m}, function(data) {
// 将数据放置到 #testShow 中
$("#testShow").html(data);
});


使用 load

// load 会直接将返回数据放置到 #testShow 中
$("#testShow").load("googleChartUse.php", {name: m});