安卓这样可以判断是否到底部了$(window).scroll(function () { var scrollTop = $(this).scrollTop() var windowHeight = $(this).height() var scrollHeight = $(document).height() if((scrollTop+windowHeight)==scrollHeight){ console.log('bottom') }}ios就不行,scrollTop一直为0,windowHeight 也不是视口高度, 求大神解答
1 回答
翻翻过去那场雪
TA贡献2065条经验 获得超14个赞
let myTop = Math.max(document.body.scrollTop, document.documentElement.scrollTop);
试试用这个获取滚动高度
然后判断是否滚动至底部这样来判断
if(myTop >= $(document).height()-$(window).height()){
dosomething();
}
添加回答
举报
0/150
提交
取消