--- title: Document.scrollingElement slug: Web/API/Document/scrollingElement translation_of: Web/API/Document/scrollingElement ---
scrollingElement
( {{domxref("Document")}} 的只读属性)返回滚动文档的 {{domxref("Element")}} 对象的引用。 在标准模式下, 这是文档的根元素, {{domxref("document.documentElement")}}.
当在怪异模式下, scrollingElement
属性返回 HTML body
元素(若不存在返回 null )。
var element = document.scrollingElement;
var scrollElm = document.scrollingElement; scrollElm.scrollTop = 0;
Specification | Status | Comment |
---|---|---|
{{SpecName('CSSOM View','#dom-document-scrollingelement','scrollingElement')}} | {{Spec2('CSSOM View')}} | Initial definition |