aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/document/height/index.html
blob: e9eae0c3b9c4078c0bb64936c3ae93d924d982be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
title: Document.height
slug: Web/API/Document/height
tags:
  - Document
  - HTML
  - Obsolete
  - Property
translation_of: Web/API/Document/height
---
<div>{{APIRef("DOM")}} {{Obsolete_header}}</div>

<div class="note">
<p><strong>Примечание: </strong>Начиная с  {{Gecko("6.0")}},<code> document.height </code> больше не поддерживается. Используйте <code>document.body.clientHeight</code>. Также смотрите: {{domxref("element.clientHeight")}}.</p>
</div>

<p>Возвращает высоту {{domxref("document")}} объекта. В большинстве случаев, она соответствует {{HTMLElement("body")}} элементу документа.</p>

<h2 id="Syntax" name="Syntax">Синтаксис</h2>

<pre class="syntaxbox"><em>height_value</em> = document.height
</pre>

<h2 id="Пример">Пример</h2>

<pre class="brush: js">// вывести высоту документа
alert(document.height);
</pre>

<h2 id="Альтернативы">Альтернативы</h2>

<pre class="syntaxbox">document.body.clientHeight
document.documentElement.clientHeight
document.documentElement.scrollHeight
</pre>

<h2 id="Спецификации">Спецификации</h2>

<p>HTML5</p>

<h2 id="Поддержка_браузерами">Поддержка браузерами</h2>

<div class="hidden">
<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>and send us a pull request.</p>
</div>

<p>{{Compat("api.Document.height")}}</p>

<h2 id="Смотрите_также">Смотрите также</h2>

<ul>
 <li>{{domxref("document.width")}}</li>
 <li>{{domxref("Element.clientHeight")}}</li>
 <li>{{domxref("Element.scrollHeight")}}</li>
</ul>