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

Заметка: Начиная с  {{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")}}

Смотрите также