--- title: Document.height slug: Web/API/Document/height translation_of: Web/API/Document/height ---
{{APIRef("DOM")}} {{Obsolete_header}}

 

Note: 在Gecko的6.0版本之后, document.height 不再被支持。 使用 document.body.clientHeight来代替. 详见 {{domxref("element.clientHeight")}}.

返回 {{domxref("document")}} 对象的高度. 在大多数场景中, 它相当于当前文档的 {{HTMLElement("body")}} 元素。

语法

pixels = document.height

示例

// alert document height
alert(document.height);

可选操作

document.body.clientHeight
document.documentElement.clientHeight
document.documentElement.scrollHeight

规范

HTML5

兼容性

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

另请参阅