我正在尝试确定何时滚动到页面底部(不使用任何 JS 库),但到目前为止,我对使用以下哪一个感到有些困惑。我见过的最有希望的是window.scrollY
,但即使滚动到页面底部,它也永远不会匹配 的值window.innerHeight
。做到这一点的最佳方法是什么?
window.innerWidth
window.innerHeight
window.outerWidth
window.outerHeight
window.scrollX
window.scrollY
document.body.scrollWidth
document.body.scrollHeight
document.body.scrollTop
document.body.scrollLeft
document.body.offsetTop
document.body.offsetLeft
document.body.offsetWidth
document.body.offsetHeight