# 判断当前位置是否为页面底部
# 快速导航
提醒
返回值为true/false
# 具体实例代码
function bottomVisible() {
return document.documentElement.clientHeight + window.scrollY >= (document.documentElement.scrollHeight || document.documentElement.clientHeight)
}
1
2
3
2
3
分享
留言
解答
收藏
← script标签中type的使用 本地存储 →