aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/document/head/index.html
blob: 78c09b045020d58e05ccbdbeff4cba9bd8fcc53f (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
56
57
58
59
60
---
title: Document.head
slug: Web/API/Document/head
tags:
  - API
  - Document
  - Property
translation_of: Web/API/Document/head
---
<p>{{APIRef("DOM")}}</p>

<p>Возвращает элемент {{HTMLElement("head")}} текущего документа. Если имеется более одного элемента <code>&lt;head&gt;</code>, будет возвращён первый из них.</p>

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

<pre class="syntaxbox"><em>var objRef</em> = document.head;
</pre>



<h3 id="Значение">Значение</h3>

<p>{{domxref("HTMLHeadElement")}}.</p>



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

<pre><code>&lt;!doctype html&gt;
&lt;head id="my-document-head"&gt;
  &lt;title&gt;Example: using document.head&lt;/title&gt;
&lt;/head&gt;

&lt;script&gt;
  var theHead = document.head;

  console.log(theHead.id); // "my-document-head";

  console.log( theHead === document.querySelector("head") ); // true
&lt;/script&gt;</code></pre>

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

<p><code>document.head</code> доступно только для чтения. Присвоить значение этому свойству нельзя. При попытке это сделать ошибка вызвана не будет, только если вы не используете <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode">Strict Mode</a>. В данном случае будет вызвано {{jsxref("TypeError")}} .</p>



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

{{Specifications}}

<h2 id="Браузерная_поддержка">Браузерная поддержка</h2>

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

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

<ul>
 <li>{{domxref("document.body")}}</li>
</ul>