jquery 모바일 무한 스크롤

Web Development assistant·2022년 6월 10일
1

# javascript

목록 보기
27/35
var oneTime = false; //중복 호출 방지 oneTime 선언
<script>

$(window).scroll(function(){
     var scrollTop = $(window).scrollTop();
     var innerHeight = $(window).innerHeight();
     var scrollHeight = $('body').prop('scrollHeight');
     
     console.log("1 : "+ Math.ceil(scrollTop + innerHeight));
     console.log("2 : "+ scrollHeight);
     
     if ((Math.ceil(scrollTop + innerHeight) >= (scrollHeight - 100)) && !oneTime) {
       page += 1;
       oneTime = true;
       
       get@@@List();
     }
   });
   
   
   //화면 그려주는 곳에서 
   
   oneTime = false;

0개의 댓글