我append()
在setTimeout
. 如果我删除 SetTimeout,则会加载所有图像。一旦我把它放在这里,变量似乎超出范围或无效。关于我在这里做错了什么有什么建议吗?
// thumbs[] is an array with image sources.
for (var imageIndex = 0; imageIndex < thumbs.length; imageIndex++) {
var im = thumbs[imageIndex];
setTimeout(function(im){
$("#a").append("<img class='images' src='" + im + "' />");
},1000);
} // end for