--- 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
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-dataand send us a pull request.
{{Compat("api.Document.height")}}