1

我需要一些关于如何解决这个问题的建议。

在我的页面中单击链接时,我有一个要执行的 Ajax 代码。ajax代码是调用PHP代码查询某个目录下的图片(缩略图大小)文件名。执行后,ajax 数据将在该目录中包含我的缩略图的文件名,并在我的页面中动态显示缩略图。

我想知道如何在不使用 SetTimeOut() 的情况下检查所有缩略图是否已经完成加载?并在加载所有缩略图后执行一些 jquery 代码。我需要加载我的缩略图,以便我可以设置我的缩略图 div 的大小以进行滚动。

4

2 回答 2

1

您可以对图像使用加载方法,例如:

$('someElement img').load(function(){
  //all loaded
});

你的意思是这样的吗

于 2012-05-09T04:15:00.387 回答
1

方法:

function imagesLoaded(imgAr, callback){
    var 
        // This is a copy of the array of images
        imageAr = imgAr.slice(0),
        // This holds the javascript Image Objects
        images = [],
        // This is the number of Images that has loaded
        loadedCount = 0;

    var imageLoaded = function(){
        // An image has finished loading, so increment the number of images loaded by 1
        loadedCount++;
        if(loadedCount>=imageAr.length){
            // If all images have finished loading, run the 'callback' function, to report back that images have all loaded
            callback.call();
        }
    }

    // Loop around each image url
    for(var i=0;i<imageAr.length;i++){
        // For each image, create a new object
        images[i] = new Image();
        // when the image finishes loading, call the imageLoaded function
        images[i].onload = imageLoaded;
        // Assign the image the appropriate src attribute
        images[i].src = imageAr[i];
    }
}

采用:

var imageAr = ['a.jpg', 'b.jpg', 'c.jpg'];

imagesLoaded(imageAr, function(){
    alert('Images loaded!');
});
于 2012-05-09T04:22:33.180 回答