js滚动异步加载数据的思路

<body>

<div style="width:200px; height:1000px; border:1px solid red;" id="top_div"></div>

<script>
window.onscroll = function(){
var t = document.documentElement.scrollTop || document.body.scrollTop; //滚动条滚动的长度
var height=document.body.scrollHeight - window.screen.availHeight; //网页页面整体高度 - 浏览器可见区域高度 if( t >= height ) {
//在此ajax异步加载数据显示
alert(height);
$("div").last().after("<div style='width:200px; height:50px;'>"+Date.now()+"</div>");
}
} </script> </body>

  

上一篇:MFC之CToolTipCtrl按钮提示(消息捕获和消息传递)


下一篇:boostrap-非常好用但是容易让人忽略的地方【6】:role属性