<script>
var count = 57;
$(document).ready(function() {
	
	// 스크롤 바인딩
	jQuery(window).scroll(function(e) {
		
		var doc_height = jQuery(document).height();
		var win_height= jQuery(window).height();
		var scroll_pos = jQuery(window).scrollTop();

		
		// 스크롤의 끝이라면.
		if(scroll_pos >= (doc_height - win_height - 60)) {

			var out = [];
			for ( var i = 0; i < 10; i++) {
				out.push('<li>' + (count++) + '</li>');
			}
			$('ul').append(out.join(''));
		}
	});
});



<html>
	<body>
		<ul>
		</ul>
	</body>
</html>


Posted by 선화

블로그 이미지
선화

공지사항

Yesterday
Today
Total

달력

 « |  » 2024.4
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30

최근에 올라온 글

최근에 달린 댓글

최근에 받은 트랙백

글 보관함