小编典典

使用 jQuery 预加载图像

all

我正在寻找一种使用 JavaScript 预加载图像的快速简便的方法。如果这很重要,我正在使用 jQuery。

我在这里看到了这个(http://nettuts.com…):

function complexLoad(config, fileNames) {
  for (var x = 0; x < fileNames.length; x++) {
    $("<img>").attr({
      id: fileNames[x],
      src: config.imgDir + fileNames[x] + config.imgFormat,
      title: "The " + fileNames[x] + " nebula"
    }).appendTo("#" + config.imgContainer).css({ display: "none" });
  }
};

但是,对于我想要的东西来说,它看起来有点过头了!

我知道有 jQuery 插件可以做到这一点,但它们看起来都有点大(大小);我只需要一种快速、简单和简短的预加载图像的方法!


阅读 106

收藏
2022-03-03

共1个答案

小编典典

快速 简便

function preload(arrayOfImages) {
    $(arrayOfImages).each(function(){
        $('<img/>')[0].src = this;
        // Alternatively you could use:
        // (new Image()).src = this;
    });
}

// Usage:

preload([
    'img/imageName.jpg',
    'img/anotherOne.jpg',
    'img/blahblahblah.jpg'
]);

或者,如果你想要一个 jQuery 插件:

$.fn.preload = function() {
    this.each(function(){
        $('<img/>')[0].src = this;
    });
}

// Usage:

$(['img1.jpg','img2.jpg','img3.jpg']).preload();
2022-03-03