aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/api/node/parentnode/index.html
blob: 6481d10a8620b9bdf962755e63094bdaf36d8e44 (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
---
title: Node.parentNode
slug: Web/API/Node/parentNode
translation_of: Web/API/Node/parentNode
---
<p>{{ ApiRef() }}</p>
<h2 id="Allgemein" name="Allgemein">Allgemein</h2>
<p>Gibt das Elternelement des gegebenen Datenknotens, entsprechend des DOM-Baums zurück.</p>
<h2 id="Syntax" name="Syntax">Syntax</h2>
<pre class="eval">elternelement = node.parentNode
</pre>
<p><code><var>elternelement</var></code> enthält das Elternelement des gegebenen Datenknotens.</p>
<h2 id="Beispiel" name="Beispiel">Beispiel</h2>
<pre class="brush:javascript">var dokument = document.documentElement.parentNode;
</pre>
<h2 id="Anmerkungen" name="Anmerkungen">Anmerkungen</h2>
<ul>
 <li>Es kann sich bei dem Elternelement um ein {{ domxref("Element") }}, ein {{ domxref("Document") }} oder ein {{ domxref("DocumentFragment") }} handeln.</li>
 <li><code>parentNode</code> gibt <code>null</code> zurück bei folgenden Knotentypen: <code>Attr</code>, <code>Document</code>, <code>DocumentFragment</code>, <code>Entity</code>, and <code>Notation</code>.</li>
 <li>Außerdem wird <code>null</code> zurückgegeben, wenn der Knoten bisher nicht an den DOM-Baum angefügt wurde (weil er womöglich gerade erst erstellt wurde).</li>
</ul>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
 <li>{{ domxref("Node") }}</li>
 <li>{{ Domxref("Node.firstChild") }}</li>
 <li>{{ Domxref("Node.lastChild") }}</li>
 <li>{{ Domxref("Node.childNodes") }}</li>
 <li>{{ Domxref("Node.nextSibling") }}</li>
 <li>{{ Domxref("Node.previousSibling") }}</li>
</ul>
<h2 id="Browserunterstützung">Browserunterstützung</h2>
<p>{{ CompatibilityTable() }}</p>
<div id="compat-desktop">
 <table class="compat-table">
  <tbody>
   <tr>
    <th>Feature</th>
    <th>Firefox (Gecko)</th>
    <th>Chrome</th>
    <th>Internet Explorer</th>
    <th>Opera</th>
    <th>Safari</th>
   </tr>
   <tr>
    <td>Basic support</td>
    <td>{{ CompatGeckoDesktop(1.0) }}</td>
    <td>0.2</td>
    <td>{{ CompatVersionUnknown() }}</td>
    <td>{{ CompatVersionUnknown() }}</td>
    <td>{{ CompatVersionUnknown() }}</td>
   </tr>
  </tbody>
 </table>
</div>
<div id="compat-mobile">
 <table class="compat-table">
  <tbody>
   <tr>
    <th>Feature</th>
    <th>Android</th>
    <th>Firefox Mobile (Gecko)</th>
    <th>IE Mobile</th>
    <th>Opera Mobile</th>
    <th>Safari Mobile</th>
   </tr>
   <tr>
    <td>Basic support</td>
    <td>{{ CompatVersionUnknown() }}</td>
    <td>{{ CompatGeckoMobile(1) }}</td>
    <td>{{ CompatVersionUnknown() }}</td>
    <td>{{ CompatVersionUnknown() }}</td>
    <td>{{ CompatVersionUnknown() }}</td>
   </tr>
  </tbody>
 </table>
</div>
<h2 id="Spezifikation">Spezifikation</h2>
<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1060184317">DOM Level 2 Core: Node.parentNode</a> (en)</p>
<p>{{ languages( { "it": "it/DOM/element.parentNode", "ja": "ja/DOM/element.parentNode", "fr": "fr/DOM/element.parentNode", "pl": "pl/DOM/element.parentNode" , "zh-cn": "zh-cn/DOM/Node.parentNode" } ) }}</p>