美文网首页
滚动条底部自动异步加载数据

滚动条底部自动异步加载数据

作者: Artifacts | 来源:发表于2019-10-11 23:03 被阅读0次

    判断滚动条是否到底部,需要用到DOM的三个属性值,即scrollTop、clientHeight、scrollHeight

    • scrollTop为滚动条在Y轴上的滚动过距离。

    • clientHeight为浏览器内容可视区域的高度。

    • scrollHeight为内容可视区域的高度加上溢出(滚动)的距离(网页的实际高度)。

    从这个三个属性的介绍就可以看出来,滚动条到底部的条件即为scrollTop + clientHeight == scrollHeight

    $(window).scroll(function () {
            var scrollTop = $(this).scrollTop();
            var scrollHeight = $(document).height();
            var windowHeight = $(this).height();
            if (scrollTop + windowHeight == scrollHeight) {
               //异步加载数据的方法
            }
        });
    

    相关文章

      网友评论

          本文标题:滚动条底部自动异步加载数据

          本文链接:https://www.haomeiwen.com/subject/whkfmctx.html