meclass.prototype.switch = function() {
var items = [];
$.getJSON('http://localhost/jsoner.php', function(data) {
$.each(data, function(key, val) {
items.push(val);
alert(items[0]); //this works
});
});
alert(items[0]); //this does not
}
我一直在修补这个,但并没有真正理解它。我在我的所有 jquery 函数中都遇到了这个问题,所以这是我还没有学过的基本知识——也没有运气找到答案。