aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/node/nodevalue/index.html
blob: 418cecdb771c834be897e93c1414f2a29167bc51 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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>