网页滚动到底部,拉取数据

Posted 不想想太多 - Faded

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网页滚动到底部,拉取数据相关的知识,希望对你有一定的参考价值。

网页滚动模式

//滚到到底部自动拉取数据
        //页面滚到底部异步加载下一页数据
        $(window).scroll(function () {
            //已经滚动到上面的页面高度
            var scrollTop = parseFloat($(this).scrollTop()),
                //页面高度
                scrollHeight = $(document).height(),
                //浏览器窗口高度
                windowHeight = parseFloat($(this).height()),
                totalHeight = scrollTop + windowHeight;

            //此处是滚动条到底部时候触发的事件,在这里写要加载的数据,或者是拉动滚动条的操作
            if (scrollTop + windowHeight >= scrollHeight - 0.7) {

                var index = $(‘.swiper-slide-active‘).data("index");
                var id = $(‘.swiper-slide-active‘).attr("id");
                eval(‘‘+id+‘(‘+Number(index)+1+‘,‘+pageNumber+‘,"‘+userid+‘")‘);
            }
        });

可滚动的元素 ,滚动到底部,触发获取数据

//滚到到底部自动拉取数据
        //页面滚到底部异步加载下一页数据
        $(".swiper-slide").scroll(function () {
            //已经滚动到上面的页面高度
            var scrollTop = parseFloat($(this).scrollTop()),
                //滚动高度
                scrollHeight = this.scrollHeight,
                //窗口高度
                windowHeight = $(this).height(),
                totalHeight = scrollTop + windowHeight;
            //此处是滚动条到底部时候触发的事件,在这里写要加载的数据,或者是拉动滚动条的操作
            if (scrollTop + windowHeight >= scrollHeight - 0.7) {
                console.log("===");
                var nextIndex = Number($(‘.swiper-slide-active‘).data("index"))+1;
                var id = $(‘.swiper-slide-active‘).attr("id");
                eval(‘‘ + id + ‘(‘ + nextIndex + ‘,‘ + pageNumber + ‘,"‘ + userid + ‘")‘);
            }
        });

  

以上是关于网页滚动到底部,拉取数据的主要内容,如果未能解决你的问题,请参考以下文章

我做了个网页,页面已经到底部了,滚动条还可以下拉。

滚动到底部自动加载新内容

使用Android ViewPager2在回收器视图中滚动到底部时自动更改选项卡项

滚动到底部(和强制回流性能问题)

无法使分屏滚动到底部

SwiftUI - ScrollView 没有一直滚动到底部