借占位符实现滚动到列表底部重新加载数据

滚动到底部更新数据是个很常见的需求,也是网站优化的一部分。

  • 页面效果
pic1.png
  • 第一次滚动到底部新加载数据
pic2.png
  • 再滚动
pic3.png
  • 源代码
<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>Document</title>
   <style>
       li{width: 100px;height: 100px;background: #000;margin-bottom: 15px;color: #fff;text-align: center;}
   </style>
   <script src="./jquery.min.js"></script>
</head>
<body>
   <ul class="ul-wrap">
       <li>1</li>
       <li>1</li>
       <li>1</li>
       <li>1</li>
       <li>1</li>
       <li>1</li>
       <li>1</li>
       <li>1</li>
       <li>1</li>
       <li>1</li>
   </ul>
   <div  id="loadInfo"></div>
   <script>
       function randomColor(){
         var color="#";
         var colorArr=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];
         for(i=0;i<6;i++){
             var cur=randomNum(15,0);
             color+=colorArr[cur];
         }
         function randomNum(max,min){
             return Math.floor(Math.random()*(max-min+1)+min)
         }
         return color;
       }

       //获取滚动高度、文档高度、浏览器视口高度
       var heightFuns=function(){
           //获取滚动高度
           heightFuns.prototype.getScrollTop=function (){
               var scrollTop=0,bodyScrollTop=0,documentScrollTop=0;
               if(document.body){
                   bodyScrollTop=document.body.scrollTop;
               }
               if(document.documentElement){
                   documentScrollTop=document.documentElement.scrollTop;
               }
               scrollTop = (bodyScrollTop-documentScrollTop>0)?bodyScrollTop:documentScrollTop;
               return scrollTop;
           }
           //获取文档的总高度
           heightFuns.prototype.getScrollHeight=function (){
               var scrollHeight=0,bodyScrollHeight=0,documentScrollHeight;
               if(document.body){
                   bodyScrollHeight=document.body.scrollHeight;
               }
               if(document.documentElement){
                   documentScrollHeight=document.documentElement.scrollHeight;
               }
               scrollHeight=(bodyScrollHeight-documentScrollHeight>0)?bodyScrollHeight:documentScrollHeight;
               return scrollHeight;
           }
           //获取浏览器视口的高度
           heightFuns.prototype.getWindowHeight=function (){
               var windowHeight=0;
               if(document.compatMode == 'CSS1Compat'){
                   windowHeight=document.documentElement.clientHeight;
               }else{
                   windowHeight=document.body.clientHeight;
               }
               return windowHeight;
           }
       }

       function showData(){
           $(".ul-wrap").append("<li>new</li>");
           $("body").css("background",randomColor());
           $("#loadInfo").html("");
       }

       $(function(){
           var heightObj=new heightFuns();
           window.onscroll=function(){
               if(heightObj.getScrollTop()==heightObj.getScrollHeight()-heightObj.getWindowHeight()){
                   // setTimeout(showData,1000);
                   showData();
                   $("#loadInfo").html("正在加载...");
               }
           }
       });
   </script>
</body>
</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Window和document对象的区别 window对象window对象表示浏览器中打开的窗口window对象是...
    FConfidence阅读 2,249评论 0 5
  • 以下是常用的代码收集,学习用。转自豪情博客园 1. PC - js 返回指定范围的随机数(m-n之间)的公式 re...
    自由加咖啡阅读 1,015评论 0 1
  • 一、JS前言 (1)认识JS 也许你已经了解HTML标记(也称为结构),知道了CSS样式(也称为表示),会使用HT...
    凛0_0阅读 2,798评论 0 8
  • 我们首先要明白,我们给页面添加效果用到的js到底是什么?js其实包含三部分:dom 文档对象模型 bom 浏览...
    一直以来都很好阅读 817评论 0 0
  • 制作网页的过程中,你有时候需要知道某个元素在网页上的确切位置。 下面的教程总结了Javascript在网页定位方面...
    麦田里的野望阅读 1,681评论 0 1