同步 ajax 不起作用:
var rslt = false;
$.ajax({
async: false,
url: url,
dataType: "json",
success: function(data) {
rslt = true;
}
});
document.write(rslt);
rslt 仍显示为假。
我没主意了...