aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/node/nodevalue/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/web/api/node/nodevalue/index.html')
-rw-r--r--files/es/web/api/node/nodevalue/index.html86
1 files changed, 86 insertions, 0 deletions
diff --git a/files/es/web/api/node/nodevalue/index.html b/files/es/web/api/node/nodevalue/index.html
new file mode 100644
index 0000000000..418cecdb77
--- /dev/null
+++ b/files/es/web/api/node/nodevalue/index.html
@@ -0,0 +1,86 @@
+---
+title: Node.nodeValue
+slug: Web/API/Node/nodeValue
+translation_of: Web/API/Node/nodeValue
+---
+<div>
+<div>{{APIRef("DOM")}}</div>
+</div>
+
+<p>La propiedad <code><strong>Nodo.nodeValue</strong></code> devuelve o actualiza el valor del nodo actual.</p>
+
+<h2 id="Syntax" name="Syntax">Sintaxis</h2>
+
+<pre class="syntaxbox"><em>valor</em>= <var>nodo</var>.nodeValue;
+</pre>
+
+<p><code>valor</code> es una cadena contenedora del valor del nodo actual, si es que tiene alguno.</p>
+
+<h2 id="Notes" name="Notes">Notas</h2>
+
+<p>Para el nodo en si, <code>nodeValue</code> devuelve <code>null</code>. Para texto, comentarios, y nodos CDATA, <code>nodeValue</code> devuelve el contenido de dicho nodo. Para nodos atributos, el valor del atributo es devuelto.</p>
+
+<p>La siguiente table muestra los distintos valores retornados por los diferentes elementos.</p>
+
+<table>
+ <thead>
+ <tr>
+ <th>Atributo</th>
+ <th>valor del atributo</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>CDATASection</td>
+ <td>contenido de la sección CDATA</td>
+ </tr>
+ <tr>
+ <td>Comment</td>
+ <td>Contenido del comentario</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>Todo el contexto excluyendo el objetivo</td>
+ </tr>
+ <tr>
+ <td>Text</td>
+ <td>Contenido del nodo de texto</td>
+ </tr>
+ </tbody>
+</table>
+
+<p>Cuando <code>nodeValue</code> es definido como <code>null</code>, actualizarlo no tiene efecto.</p>
+
+<h2 id="Specification" name="Specification">Especificación</h2>
+
+<ul>
+ <li><a href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-F68D080">DOM Level 2 Core: Node.nodeValue</a></li>
+</ul>