--- 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 ---
The {{domxref("ParentNode")}} właściwość children
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.
let children = node.children;
{{ domxref("HTMLCollection") }} aktualna, uporządkowana kolekcja elementów DOM które są potomkami node
. 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.
Jeżeli element node nie ma potomków, wtedy children
jest pustą listą o długości 0 (length
of 0)
.
const foo = document.getElementById('foo'); for (let i = 0; i < foo.children.length; i++) { console.log(foo.children[i].tagName); }
// 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);
Specification | Status | Comment |
---|---|---|
{{SpecName('DOM WHATWG', '#dom-parentnode-children', 'ParentNode.children')}} | {{Spec2('DOM WHATWG')}} | Wstępna definicja |
{{Compat("api.ParentNode.children")}}