$.each(imgs,function(i,src){
var imgObj=new Image();
$(imgObj).on('load',function(){
$pic.html(Math.round((count+1)/len*100)+"%")
console.log(Math.round((count+1)/len*100))
if(count>=len-1){
$('.pic').hide();
}
count++;
})
});
尽量贴全部代码,说不定其他地方有错
我也想问一下,为啥我的load事件不触发哇
你把count++后面的,即倒数第二行的“})”去掉。打多了吧