解决 Document.body.scrollTop 在 IE 中始终返回 0
问题:
检索滚动位置在 Internet Explorer 中使用 document.body.scrollTop 始终返回 0,即使页面已打开
原因:
IE 处理页面滚动的方式与其他浏览器不同。特别是在旧版本中,document.body.scrollTop 可能无法可靠地跟踪滚动运动。
解决方案:
对于旧版本的 IE,建议采用综合方法:
var top = (document.documentElement && document.documentElement.scrollTop) || document.body.scrollTop;
此代码检查 document.documentElement.scrollTop 和 document.body.scrollTop 以获取大多数情况下的正确滚动位置
如果您使用的是较新版本的 IE 或需要更精细的方法,请考虑使用 window.scrollY 属性:
var top = window.scrollY;
window.scrollY 提供用于检索垂直滚动位置的跨浏览器解决方案。
以上是为什么 IE 中 `document.body.scrollTop` 总是返回 0?的详细内容。更多信息请关注PHP中文网其他相关文章!