Ajax

page 단위로 제공하는 api를 사용하여 ajax 를 사용해서 무한 스크롤을 만들어보자 $(function(){ $(window).scroll(function(){ let $window = $(this); let scrollTop = $window.scrollTop(); let windowHeight = $window.height(); let documentHeight = $(document).height(); // scrollbar의 thumb가 바닥 전 500px까지 도달 하면 리스트를 가져온다. if(scrollTop + windowHeight + 500 > documentHeight) { oneTime = true; fetchList(); } }) }) 아래는 fetchList $.ajax({ ..
프흐프좋아
'Ajax' 태그의 글 목록