aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/element/nodevalue
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:47:54 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:47:54 +0100
commit30feb96f6084a2fb976a24ac01c1f4a054611b62 (patch)
treed73194ae27b60156ff0ca54013c8c4ad8519f10a /files/it/web/api/element/nodevalue
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-30feb96f6084a2fb976a24ac01c1f4a054611b62.tar.gz
translated-content-30feb96f6084a2fb976a24ac01c1f4a054611b62.tar.bz2
translated-content-30feb96f6084a2fb976a24ac01c1f4a054611b62.zip
unslug it: move
Diffstat (limited to 'files/it/web/api/element/nodevalue')
-rw-r--r--files/it/web/api/element/nodevalue/index.html75
1 files changed, 0 insertions, 75 deletions
diff --git a/files/it/web/api/element/nodevalue/index.html b/files/it/web/api/element/nodevalue/index.html
deleted file mode 100644
index 547ba77939..0000000000
--- a/files/it/web/api/element/nodevalue/index.html
+++ /dev/null
@@ -1,75 +0,0 @@
----
-title: element.nodeValue
-slug: Web/API/Element/nodeValue
-tags:
- - DOM
- - Gecko
- - Reference_del_DOM_di_Gecko
- - Tutte_le_categorie
-translation_of: Web/API/Node/nodeValue
----
-<p>{{ ApiRef() }}</p>
-<h3 id="Sommario" name="Sommario">Sommario</h3>
-<p>Restituisce il valore del nodo corrente.</p>
-<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
-<pre class="eval"><em>valore</em> = document.nodeValue
-</pre>
-<p><code>valore</code> è una stringa contenente il valore del nodo corrente, se esiste.</p>
-<h3 id="Note" name="Note">Note</h3>
-<p>La proprietà <code>nodeValue</code> dell'intero documento, restituisce <code>null</code>. Per un nodo di tipo testo, commento o CDATA, <code>nodeValue</code> restituisce il contenuto del nodo. Per i nodi attributo, restituisce il valore dell'attributo.</p>
-<p>La tabella seguente mostra i valori restituiti per i vari tipi di elementi:</p>
-<table>
- <tbody>
- <tr>
- <td>Attr</td>
- <td>il valore dell'attributo</td>
- </tr>
- <tr>
- <td>CDATASection</td>
- <td>il contenuto della sezione CDATA</td>
- </tr>
- <tr>
- <td>Comment</td>
- <td>il commento</td>
- </tr>
- <tr>
- <td>Document</td>
- <td>null</td>
- </tr>
- <tr>
- <td>DocumentFragment</td>
- <td>null</td>
- </tr>
- <tr>
- <td>DocumentType</td>
- <td>null</td>
- </tr>
- <tr>
- <td>Element</td>
- <td>null</td>
- </tr>
- <tr>
- <td>NamedNodeMap</td>
- <td>null</td>
- </tr>
- <tr>
- <td>EntityReference</td>
- <td>null</td>
- </tr>
- <tr>
- <td>Notation</td>
- <td>null</td>
- </tr>
- <tr>
- <td>ProcessingInstruction</td>
- <td>l'intero contenuto, escluso il target</td>
- </tr>
- <tr>
- <td>Text</td>
- <td>il contenuto del nodo testo</td>
- </tr>
- </tbody>
-</table>
-<p>Quando <code>nodeValue</code> è impostato a <code>null</code>, reimpostarlo non ha alcun effetto.</p>
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-F68D080">nodeValue </a></p>