aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/document/title/index.html
blob: 5e93fa831894d7d8fcc596e4bbb7c6b199a4ed52 (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
---
title: document.title
slug: Web/API/Document/title
translation_of: Web/API/Document/title
---
<p>{{APIRef("DOM")}}<code>document.title</code> restituisce il titolo del documento.</p>

<h3 id="Sintassi" name="Sintassi">Sintassi</h3>

<pre class="eval"><i>sTitle</i> = document.title
</pre>

<h3 id="Parametri" name="Parametri">Parametri</h3>

<ul>
 <li><code>sTitle</code> è una stringa che contiene il titolo del documento corrente.</li>
</ul>

<h3 id="Esempio" name="Esempio">Esempio</h3>

<pre>&lt;html&gt;
  &lt;title&gt;Ciao mondo!&lt;/title&gt;
  &lt;body&gt;
...
// document.title restituisce "Ciao mondo!"
</pre>

<h3 id="Specifiche" name="Specifiche">Specifiche</h3>

<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-18446827">DOM Level 2: title</a></p>

<p>{{ languages( { "pl": "pl/DOM/document.title" } ) }}</p>