你还没有搞清楚 post 和 load 的用法,在你的例子中这两者你只需要二选一。
$i 不输出是因为你在 jQuery 中根本没有将 name 传给 PHP。
// 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});