Document: scrollingElement 属性
scrollingElement
是 Document
接口的只读属性,它返回对滚动文档的 Element
的引用。在标准模式下,这是文档的根元素,document.documentElement
。
在怪异模式下,如果 scrollingElement
属性返回的 HTML body
元素存在且不可能滚动,则它返回 null
。这看起来可能很奇怪,但根据规范和浏览器都是正确的。
值
滚动文档的 Element
,通常是根元素(除非不在标准模式下)。
示例
js
const scrollElm = document.scrollingElement;
scrollElm.scrollTop = 0;
规范
规范 |
---|
CSSOM View 模块 # dom-document-scrollingelement |
浏览器兼容性
BCD 表格仅在浏览器中加载