IE9在一分钟后停止加载页面

时间:2012-03-17 07:08:07

标签: javascript jquery internet-explorer-9

我在单页中加载了近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分钟后停止加载。

enter image description here

我能做些什么吗?

0 个答案:

没有答案