问答详情
源自:-

为什么用size()出现下面的问题

demo4.html?_ijt=mee8ikld552icj1ci69dao95k0:111 Uncaught TypeError: $(...).size is not a function

    at Image.oImg.onload 


我的代码:

$(document).ready(function(){
   var num = 0;
   $('img').each(function (i) {

       var oImg = new Image();
       oImg.onload = function () {

           oImg.onload = null;
           num++;
           $(".loading b").html(num/$('img').size() * 100) + "%";
           if(num >= i){
               $(".loading").fadeOut();
           }
       }
       oImg.src = $('img')[i].src;
   });
});


提问者:jly啊啊 2017-08-20 23:22

个回答

  • qq_丫蛋儿_0
    2017-08-22 09:21:59

    少了个#号