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>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。