我想尝试在上一个 stackoverflow 问题上找到的这个预加载 img 脚本 - Preloading images with jQuery
为了澄清起见,我的图像路径是 img/bg/image1.jpg 我是否需要更改此脚本中的任何内容才能使其正常工作?另外,我是否需要任何其他文件,例如特定的 jquery 版本?我如何测试它是否正常工作?
function preload(arrayOfImages) {
$(arrayOfImages).each(function(){
$('<img/>')[0].src = this;
// Alternatively you could use:
// (new Image()).src = this;
});
}
preload([
'img/imageName.jpg',
'img/anotherOne.jpg',
'img/blahblahblah.jpg'
]);