jq下拉加载更多

2017-12-05  本文已影响0人  默色留恋

1.css

<style>
*{padding:0;margin:0;}
.bigbox{
    height:700px;
}
.box{
    border:1px solid red;
    margin-top:20px;
    height:600px;
    color:grey;
}
 </style>

2.html

<body>  
  <div>下拉加载更多</div>  
  <div class="bigbox">  
    <div class="box"></div>  
  </div>  
</body>  

3.js

<script>
  $(function(){
    $(window).scroll(function(){
        var aa = $(window).scrollTop(); //当前滚动条滚动的距离
        var bb = $(window).height();//浏览器当前窗口可视区域高度
        var cc = $(document).height(); //浏览器当前窗口文档的高度 
      
        if(cc <= aa+bb){
            $(".bigbox").append($(".box").clone()); 
        }
    })
  })
</script>
上一篇下一篇

猜你喜欢

热点阅读