我在单页中加载了近120个缩略图(我无能为力)。开发人员工具中的最终加载时间显示超过一分钟。在所有浏览器中它都可以正常工作,但在IE9中,当加载时间达到一分钟时,它会停止加载其他东西。
var allImg = $("#container").find("img");
function loadImgs(){
var total = allImg.length;
var pretotal = 0;
allImg.each(function(i,e){
$(this).load($(this).attr("src"),null, function(){
pretotal++;
var totalperc = (100 * pretotal) / total;
$(".perccont div").width( totalperc + "%");
if(total == pretotal){$("#preloader").fadeOut();
}
});
});
}
这个预加载器工作到20%左右,达到极限1分钟后停止加载。
我能做些什么吗?