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
|
---
title: ParentNode.children
slug: orphaned/Web/API/ParentNode/children
tags:
- API
- Child
- Child Nodes
- DOM
- HTMLCollection
- Node
- ParentNode
- Proprietà
- children
translation_of: Web/API/ParentNode/children
original_slug: Web/API/ParentNode/children
---
<div>{{ APIRef("DOM") }}</div>
<p><span class="seoSummary">La proprietà {{domxref("ParentNode")}} <code><strong>children</strong></code><strong> </strong>è una proprietà di sola lettura che restituisce una {{domxref("HTMLCollection")}} dinamica che contiene tutti gli {{domxref("Element","elements")}} figli del nodo su cui è stato chiamato.</span></p>
<h2 id="Sintassi">Sintassi</h2>
<pre class="syntaxbox">var <em>children</em> = <em>node</em>.children;</pre>
<h3 id="Valore">Valore</h3>
<p>Una {{ domxref("HTMLCollection") }} che è dimanica, raccolta ordinata degli elementi DOM che sono figli di <code>node</code>. È possibile accedere ai singoli nodi figlio nella raccolta utilizzando il metodo {{domxref("HTMLCollection.item", "item()")}} nella collezione o utilizzando la notazione in stile array JavaScript.</p>
<p>Se il nodo non ha elementi figli, <code>children</code> è una lista vuota con una <code>length</code> di <code>0</code>.</p>
<h2 id="Esempio">Esempio</h2>
<pre class="brush: js">var foo = document.getElementById('foo');
for (var i = 0; i < foo.children.length; i++) {
console.log(foo.children[i].tagName);
}
</pre>
<h2 id="Polyfill">Polyfill</h2>
<pre class="brush: js">// Sovrascrive il prototipo nativo di "children".
// Aggiunge il supporto Document e DocumentFragment per IE9 & Safari.
// Restituisce un array invece di una HTMLCollection.
;(function(constructor) {
if (constructor &&
constructor.prototype &&
constructor.prototype.children == null) {
Object.defineProperty(constructor.prototype, 'children', {
get: function() {
var 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="Specifiche">Specifiche</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specifica</th>
<th scope="col">Stato</th>
<th scope="col">Commento</th>
</tr>
<tr>
<td>{{SpecName('DOM WHATWG', '#dom-parentnode-children', 'ParentNode.children')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td>Definizione iniziale.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilità_con_i_browser">Compatibilità con i browser</h2>
<p>{{Compat("api.ParentNode.children")}}</p>
<h2 id="Vedi_anche">Vedi anche</h2>
<ul>
<li>Le interfacce {{domxref("ParentNode")}} e {{domxref("ChildNode")}}.</li>
<li>
<div class="syntaxbox">Tipi di oggetti che implementano questa interfaccia: {{domxref("Document")}}, {{domxref("Element")}}, e {{domxref("DocumentFragment")}}.</div>
</li>
<li>
<div class="syntaxbox">{{domxref("Node.childNodes")}}</div>
</li>
</ul>
|