for (i=0; i<N; i++) {
$.get("script"+ i +".jsp", function() {
//I want to use i here
//but by the time the ajax request comes back i==N, but I want the old i
})
}
所以我得到了这段代码,我想知道是否有比我的回复更好的方法来做到这一点。这与 jquery ajax 调用无关,我知道有办法通过事件对象传递“i”,我想要一个比我想出的更好的通用解决方案。