aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/document/head/index.html
blob: 941a5334319a10086ba219a7e1aa716a5045c131 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
title: Document.head
slug: Web/API/Document/head
tags:
  - API
  - Document
  - HTML DOM
  - Proprietà
  - Referenza
translation_of: Web/API/Document/head
---
<div>{{APIRef("DOM")}}</div>

<p><span class="seoSummary">La proprietà <code><strong>head</strong></code> di sola lettura dell'interfaccia {{domxref("Document")}} restituisce l'elemento {{HTMLElement("head")}} del documento corrente.</span></p>

<h2 id="Sintassi">Sintassi</h2>

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

<h3 id="Valore">Valore</h3>

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

<h2 id="Esempio">Esempio</h2>

<pre class="brush: html">&lt;!doctype html&gt;
&lt;head id="my-document-head"&gt;
  &lt;title&gt;Esempio: usare 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;
</pre>

<h2 id="Appunti">Appunti</h2>

<p><code>document.head</code> è di sola lettura. Cercare di assegnare un valore a questa proprietà fallirà silenziosamente o, in <a href="/en-US/docs/Web/JavaScript/Reference/Strict_mode">Strict Mode</a>, genera un {{jsxref("TypeError")}} .</p>

<h2 id="Specifiche">Specifiche</h2>

<table class="spectable standard-table">
 <thead>
  <tr>
   <th scope="col">Specifica</th>
   <th scope="col">Stato</th>
   <th scope="col">Commento</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('HTML5.1','dom.html#dom-document-head','Document.head')}}</td>
   <td>{{Spec2('HTML5.1')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C','dom.html#dom-document-head','Document.head')}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG','dom.html#dom-document-head','Document.head')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>Definizione iniziale.</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilità_con_i_browser">Compatibilità con i browser</h2>



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

<h2 id="Vedi_anche">Vedi anche</h2>

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