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
89
90
91
92
93
94
95
96
97
|
---
title: ParentNode.children
slug: orphaned/Web/API/ParentNode/children
tags:
- API
- Dzieci
- Dziecko
- Kolekcja HTML
- Potomek
- Potomkowie
- Właściwość
- węzeł
translation_of: Web/API/ParentNode/children
original_slug: Web/API/ParentNode/children
---
<div>{{ APIRef("DOM") }}</div>
<p><span class="seoSummary">The {{domxref("ParentNode")}} właściwość <code><strong>children</strong></code> jest właściwością tylko do odczytu (read-only) która zwraca aktualną kolekcję {{domxref("HTMLCollection")}} zawierającą wszystkie elementy podrzędne {{domxref("Element", "elements")}} węzła, na którym został wywołany.</span></p>
<h2 id="Składnia">Składnia</h2>
<pre class="syntaxbox notranslate">let <var>children</var> = <var>node</var>.children;</pre>
<h3 id="Value">Value</h3>
<p>{{ domxref("HTMLCollection") }} aktualna, uporządkowana kolekcja elementów DOM które są potomkami <code><var>node</var></code>. Możesz otrzymać pojedynczych potomków kolekcji używając albo {{domxref("HTMLCollection.item()", "item()")}} metody na kolekcji, albo używając notacji w stylu tablicowym języka JavaScript.</p>
<p>Jeżeli element node nie ma potomków, wtedy <code>children</code> jest pustą listą o długości 0 (<code>length</code> of <code>0)</code>.</p>
<h2 id="Przykład">Przykład</h2>
<pre class="brush: js notranslate">const foo = document.getElementById('foo');
for (let i = 0; i < foo.children.length; i++) {
console.log(foo.children[i].tagName);
}
</pre>
<h2 id="Uzupełnienie">Uzupełnienie</h2>
<pre class="brush: js notranslate">// Nadpisuje natywny prototyp 'children'.
// Dodaje Document & DocumentFragment wsparcie dla IE9 & Safari.
// Zwraca tablicę zamiast HTMLCollection.
;(function(constructor) {
if (constructor &&
constructor.prototype &&
constructor.prototype.children == null) {
Object.defineProperty(constructor.prototype, 'children', {
get: function() {
let i = 0, node, nodes = this.childNodes, children = [];
while (node = nodes[i++]) {
if (node.nodeType === 1) {
children.push(node);
}
}
return children;
}
});
}
})(window.Node || window.Element);
</pre>
<h2 id="Specyfikacja">Specyfikacja</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('DOM WHATWG', '#dom-parentnode-children', 'ParentNode.children')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td>Wstępna definicja</td>
</tr>
</tbody>
</table>
<h2 id="Zgodność_z_przeglądarkami">Zgodność z przeglądarkami</h2>
<div class="hidden">Tablica zgodności na tej stronie jest generowana z danych strukturalnych. Jeśli chcesz przyczynić się do do tych danych, proszę sprawdź <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> i wyślij nam swoją propozycję (a pull request).</div>
<p>{{Compat("api.ParentNode.children")}}</p>
<h2 id="Zobacz_także">Zobacz także</h2>
<ul>
<li>Interfejsy {{domxref("ParentNode")}} {{domxref("ChildNode")}}.</li>
<li>
<div class="syntaxbox">Typy obiektów implementujące ten interfejs: {{domxref("Document")}}, {{domxref("Element")}}, {{domxref("DocumentFragment")}}.</div>
</li>
<li>
<div class="syntaxbox">{{domxref("Node.childNodes")}}</div>
</li>
</ul>
|