jquery实例:随页面滚动条滚动而自动加载内容

<script language="javascript">
$(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;}
			$('#div1').css("height", "+=100");i++;
			//可以根据实际情况,获取动态数据加载 到 div1中
			$('<div>' + i + '</div>').appendTo($('#div1'));
		}
	});
});
</script>

你可能感兴趣的:(jquery)