首页  >  文章  >  web前端  >  为什么 IE 中的 document.body.scrollTop 始终为 0,即使在滚动时也是如此?

为什么 IE 中的 document.body.scrollTop 始终为 0,即使在滚动时也是如此?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-11-17 07:52:03468浏览

Why is document.body.scrollTop always 0 in IE, even when scrolling?

IE 中 document.body.scrollTop 始终为 0,即使在滚动时

当您在移动鼠标时,在状态栏中显示 document.body.scrollTop 的值。在 IE 中,该值始终为 0。为什么它总是 0?还有其他方法可以获取滚动条移动了多少吗?

要解决此问题,对于 IE 中较旧的文档类型,可以尝试以下方法:

var top = (document.documentElement && document.documentElement.scrollTop) || 
              document.body.scrollTop;

以上是为什么 IE 中的 document.body.scrollTop 始终为 0,即使在滚动时也是如此?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn