aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/api/node/nodevalue/index.html
blob: ab9720812e9ef368ffafaf6267bf552e029a3a67 (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
87
88
---
title: Node.nodeValue
slug: Web/API/Node/nodeValue
tags:
  - API DOM Gecko Property
translation_of: Web/API/Node/nodeValue
---
<div>
<div>{{APIRef("DOM")}}</div>
</div>

<p>Die <code><strong>Node.nodeValue</strong></code> Eigenschaft gibt den Wert der aktuellen Node zurück oder setzt ihn.</p>

<h2 id="Syntax" name="Syntax">Syntax</h2>

<pre class="syntaxbox"><var>value</var> = <var>node</var>.nodeValue;
</pre>

<p><code>value</code> ist ein string der den Inhalt, falls es ihn gibt, der aktuellen node enthält.</p>

<h2 id="Notes" name="Notes">Notizen</h2>

<p>Für das Dokument selbst, gibt <code>nodeValue</code>  <code>null</code> zurück. Für Text, Kommentar, und CDATA nodes, gibt <code>nodeValue</code> den Inhalt der node zurück. Für attribute nodes, wird der Inhalt des Attributes zurückgegeben.</p>

<p>Die folgende Tabelle zeigt die return Werte der unterschiedlichen Elemente:</p>

<table>
 <thead>
  <tr>
   <th>Attr</th>
   <th>value of attribute</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>CDATASection</td>
   <td>Inhalt der CDATA Section</td>
  </tr>
  <tr>
   <td>Comment</td>
   <td>Inhalt des comments</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>Gesamter Inhalt, ausgenommen des target</td>
  </tr>
  <tr>
   <td>Text</td>
   <td>Inhalt der text node</td>
  </tr>
 </tbody>
</table>

<p>Wenn <code>nodeValue</code> als <code>null</code> definiert wird, hat das null setzen keine Auswirkung.</p>

<h2 id="Specification" name="Specification">Spezifikation</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>