js判断div距离浏览器顶部或者底部的距离$(window).scroll(function() {
var scrollTop = $(this).scrollTop();
var scrollHeight = $(document).height();
var windowHeight = $(this).height();
if(scrollTop == 0){
alert('顶部');
}
if(scrollTop + windowHeight == scrollHeight  ){
alert('下拉到底了');
}
网站底部代码js特效})

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。