$.getJSON("urlhere", {}, function(data)
{
// Other code is commented out, I'm just using the following loop to test.
for(var a = 0; a < 2546; a++)
if(a > 995)
alert((a + 1) + ": " + data.d.results[a].Column2);
});
出于某种原因,我没有从我的清单中得到我需要的所有东西。所以我放入这个循环来测试它,它由于某种原因停在 1000 处。为什么会发生这种情况,我该如何解决?