📅  最后修改于: 2022-03-11 15:03:53.395000             🧑  作者: Mango
// Image proeloading with jQuery
$.fn.preload = function() {
this.each(function(){
$('')[0].src = this;
});
}
// Usage:
$(['img1.jpg','img2.jpg','img3.jpg']).preload();