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'
]);
或者使用jQuery的preload插件:
$.fn.preload = function() {
this.each(function(){
$('<img/>')[0].src = this;
});
}
// 用法:
$(['img1.jpg','img2.jpg','img3.jpg']).preload();
评论