--- title: Document.height slug: Web/API/Document/height tags: - Document - HTML - Obsolete - Property translation_of: Web/API/Document/height ---
Примечание: Начиная с {{Gecko("6.0")}}, document.height
больше не поддерживается. Используйте document.body.clientHeight
. Также смотрите: {{domxref("element.clientHeight")}}.
Возвращает высоту {{domxref("document")}} объекта. В большинстве случаев, она соответствует {{HTMLElement("body")}} элементу документа.
height_value = document.height
// вывести высоту документа alert(document.height);
document.body.clientHeight document.documentElement.clientHeight document.documentElement.scrollHeight
HTML5
{{Compat("api.Document.height")}}