问答详情
源自:2-3 实例1图片相册之使用预加载

为什么我的load始终无法触发

 $.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++;

         

          })   


        });


提问者:qq_CrazyBoy_34276337 2017-08-24 22:38

个回答

  • Zz皓
    2018-06-25 18:24:20

    尽量贴全部代码,说不定其他地方有错

  • 慕粉3727899
    2018-05-03 15:54:48

    我也想问一下,为啥我的load事件不触发哇

  • 望逍遥
    2017-08-25 17:29:09

    你把count++后面的,即倒数第二行的“})”去掉。打多了吧