大家好!今天让小编来大家介绍下关于js scroll组件(js scroll 怎么滚到最下方)的问题,以下是小编对此问题的归纳整理,让我们一起来看看吧。

文章目录列表:

js scroll组件(js scroll 怎么滚到最下方) 第1张

具体的实现方法如下:$(window).scroll(function() { 如果滚动的高度加上窗口的高度等于页面的高度就是到了底部 if($(window).scrollTop() + $(window).height() == $(document).height()) { alert("bottom!"); //已经滚动到底部 }});或者也可以写专用方法检测高度:function getDocHeight() { var D = document; return Math.max( D.body.scrollHeight, D.documentElement.scrollHeight, D.body.offsetHeight, D.documentElement.offsetHeight, D.body.clientHeight, D.documentElement.clientHeight );}然后再用以下方法检测:$(window).scroll(function() { if($(window).scrollTop() + $(window).height() == getDocHeight()) { alert("bottom!"); } });,本文目录js scroll 怎么滚到最下方js scroll 怎么滚到最下方js判断window.scroll 判断滚动到底部的方法是设置一个变量,来检测鼠标位置。

本文目录

js scroll 怎么滚到最下方

js判断window.scroll 判断滚动到底部的方法是设置一个变量,来检测鼠标位置。具体的实现方法如下:$(window).scroll(function() { 如果滚动的高度加上窗口的高度等于页面的高度就是到了底部 if($(window).scrollTop() + $(window).height() == $(document).height()) { alert("bottom!"); //已经滚动到底部 }});或者也可以写专用方法检测高度:function getDocHeight() { var D = document; return Math.max( D.body.scrollHeight, D.documentElement.scrollHeight, D.body.offsetHeight, D.documentElement.offsetHeight, D.body.clientHeight, D.documentElement.clientHeight );}然后再用以下方法检测:$(window).scroll(function() { if($(window).scrollTop() + $(window).height() == getDocHeight()) { alert("bottom!"); } });

以上就是小编对于js scroll组件(js scroll 怎么滚到最下方)问题和相关问题的解答了,js scroll组件(js scroll 怎么滚到最下方)的问题希望对你有用!

收藏(0)