aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/document/close/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/document/close/index.html')
-rw-r--r--files/it/web/api/document/close/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/files/it/web/api/document/close/index.html b/files/it/web/api/document/close/index.html
new file mode 100644
index 0000000000..bc86c7bacc
--- /dev/null
+++ b/files/it/web/api/document/close/index.html
@@ -0,0 +1,27 @@
+---
+title: document.close
+slug: Web/API/Document/close
+translation_of: Web/API/Document/close
+---
+<div>{{APIRef("DOM")}}</div>
+
+<p><code>document.close()</code> termina la scrittura su un documento che รจ stato aperto con <a href="it/DOM/document.open">document.open()</a>.</p>
+
+<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
+
+<pre class="eval">document.close();
+</pre>
+
+<h3 id="Esempio" name="Esempio">Esempio</h3>
+
+<pre>// apro un documento per scrivervi sopra;
+// scrivo il contenuto sul documento;
+// chiudo il documento.
+document.open();
+document.write("&lt;p&gt;Testo da inserire...&lt;/p&gt;");
+document.close();
+</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-98948567">DOM Level 2 HTML: <code>close()</code> Method</a></p>