스크롤 막대를 통해 데이터 자동 로드

1227 단어


     
    
    
    $(function () { 
    var i = 4;$(window).bind("scroll", function (event) 
    { 
        //   , ie,ff,chrome
         var top = document.documentElement.scrollTop + document.body.scrollTop; 
         //  
         var textheight = $(document).height(); 
         //  -top-   
         if (textheight - top - $(window).height() <= 100) { if (i >= 100) { return; 
         // 100
    }
     $('#div1').css("height", $(document).height() + 100);i++;
         // ,    div1 
         $('<div>' + i + '</div>').appendTo($('#div1'));
     } 
 }); 
     })
    
     


    
1
2
3
4

  
다음으로 전송:https://www.cnblogs.com/Mwsoft/p/3788264.html

좋은 웹페이지 즐겨찾기