--- title: Document.scrollingElement slug: Web/API/Document/scrollingElement tags: - API - Document - Property - Reference - scrollingElement translation_of: Web/API/Document/scrollingElement ---
{{APIRef("DOM")}}
 
scrollingElement は、{{domxref("Document")}} インターフェースの読み込み専用プロパティです。
スクロール可能な {{domxref("Element")}} の参照を返します。
スタンダードモードでは、ドキュメントのルート要素である {{domxref("document.documentElement")}} になります。
 
後方互換モードでは、scrollingElement はHTMLの body 要素を返します。
body 要素が存在しないか、それが スクロール可能 な場合は null を返します。

構文

var element = document.scrollingElement;

var scrollElm = document.scrollingElement;
scrollElm.scrollTop = 0;

仕様

仕様書 策定状況 コメント
{{SpecName('CSSOM View','#dom-document-scrollingelement','scrollingElement')}} {{Spec2('CSSOM View')}} Initial definition

ブラウザー実装状況

{{Compat("api.Document.scrollingElement")}}