我有这个代码:
function retrieve_districts(){
var json='';
$.get("http://localhost/aaa/districts.php",function(result, textStatus) {
if(textStatus=="success"){
json=JSON.parse(JSON.stringify(result)); (alert works fine here)
}
}, "json");
alert(json);
}
但是警报是空的,我该怎么办?非常感谢您