清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
// Insert preloaded image after it finishes loading
$('<img />')
.attr('src', 'imageURL.jpg')
.load(function(){
$('.profile').append( $(this) );
// Your other custom code
});