試圖執行此:jQuery的崗位不能正常工作,數據沒有定義
function getReport(name) {
$.ajax({
type: "POST",
url: "reportAjax.php",
data: "name="+ name,
success: function(data){
var json = $.parseJSON(data);
}
});
alert(data);
}
$(document).ready(function() {
getReport('mobileDevicesBreakdown_30days');
});
我越來越data is not defined
reportAjax.php絕對可用,總有返回值(即使發送變量到它 - 目前name
不正確或缺失)。