--- title: Document.height slug: Web/API/Document/height tags: - DOM - DOM_0 - Gecko - Gecko DOM Reference translation_of: Web/API/Document/height ---
メモ: {{Gecko("6.0")}} より document.height
には対応しなくなりました。代わりに document.body.clientHeight
を使用してください。 {{domxref("element.clientHeight")}} を参照して下さい。
現在の {{domxref("document")}} オブジェクトの高さを返します。多くの場合、これは現在の文書の {{HTMLElement("body")}} 要素の高さと同じ値です。
pixels = document.height
// 文書の高さを表示 alert(document.height);
document.body.clientHeight document.documentElement.clientHeight document.documentElement.scrollHeight
HTML5
{{Compat("api.Document.height")}}