aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/parentnode
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-04-14 00:11:31 +0000
committerMDN <actions@users.noreply.github.com>2021-04-14 00:11:31 +0000
commitdb26cf86829f9b43d29f18b9bbf197e9e2d55c31 (patch)
tree9e4b1a32107c07b5a6d3d449f9d52f3d645aa87f /files/it/web/api/parentnode
parent2a80998020496995b1eb33e0a2ed024f1708535d (diff)
downloadtranslated-content-db26cf86829f9b43d29f18b9bbf197e9e2d55c31.tar.gz
translated-content-db26cf86829f9b43d29f18b9bbf197e9e2d55c31.tar.bz2
translated-content-db26cf86829f9b43d29f18b9bbf197e9e2d55c31.zip
[CRON] sync translated content
Diffstat (limited to 'files/it/web/api/parentnode')
-rw-r--r--files/it/web/api/parentnode/children/index.html95
1 files changed, 0 insertions, 95 deletions
diff --git a/files/it/web/api/parentnode/children/index.html b/files/it/web/api/parentnode/children/index.html
deleted file mode 100644
index 7bedb73eed..0000000000
--- a/files/it/web/api/parentnode/children/index.html
+++ /dev/null
@@ -1,95 +0,0 @@
----
-title: ParentNode.children
-slug: Web/API/ParentNode/children
-tags:
- - API
- - Child
- - Child Nodes
- - DOM
- - HTMLCollection
- - Node
- - ParentNode
- - Proprietà
- - children
-translation_of: 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 &lt; 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 &amp; Safari.
-// Restituisce un array invece di una HTMLCollection.
-;(function(constructor) {
- if (constructor &amp;&amp;
- constructor.prototype &amp;&amp;
- 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>