aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/window/document/index.html
blob: 5d98a103851f8822496ee90636054efe74c67eb0 (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
---
title: Window.document
slug: Web/API/Window/document
translation_of: Web/API/Window/document
---
<div>{{APIRef}}</div>

<p>Restituisce un riferimento al documento contenuto nella finestra.</p>

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

<pre class="eval"><i>doc</i> = window.document
</pre>

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

<ul>
 <li><code>doc</code> è un riferimento a un oggetto <a href="it/DOM/document">document</a>.</li>
</ul>

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

<pre>&lt;html&gt;
&lt;head&gt;
   &lt;title&gt;Ciao, mondo!&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;script type="text/javascript"&gt;
   var doc = window.document;
   alert( doc.title);    // produce: Ciao, mondo!
&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>

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

<p>HTML</p>