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><html>
<head>
<title>Ciao, mondo!</title>
</head>
<body>
<script type="text/javascript">
var doc = window.document;
alert( doc.title); // produce: Ciao, mondo!
</script>
</body>
</html></pre>
<h2 id="Specifiche" name="Specifiche">Specifiche</h2>
<p>HTML</p>
|