--- title: Document.height slug: Web/API/Document/height translation_of: Web/API/Document/height ---
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")}}