我在 jquery 中编写的这个函数是预加载的好方法吗?谢谢你
function loader(){
imgTag('#check');
function imgTag(whereToAppend){
var image = 'image.jpg';
$(whereToAppend).append('<img id="imgWrapper">');
$('#imgWrapper').attr('src', image).hide().one('load',function(){
$(this).fadeIn('slow');
})
}
}