aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/element/attributes/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/element/attributes/index.html')
-rw-r--r--files/it/web/api/element/attributes/index.html120
1 files changed, 0 insertions, 120 deletions
diff --git a/files/it/web/api/element/attributes/index.html b/files/it/web/api/element/attributes/index.html
deleted file mode 100644
index 5bd14f3e4b..0000000000
--- a/files/it/web/api/element/attributes/index.html
+++ /dev/null
@@ -1,120 +0,0 @@
----
-title: Element.attributes
-slug: Web/API/Element/attributes
-tags:
- - API
- - Attributi
- - DOM
- - Element
- - Proprietà
- - Referenza
-translation_of: Web/API/Element/attributes
----
-<p>{{ APIRef("DOM") }}</p>
-
-<p>La proprietà <strong><code>Element.attributes</code></strong> restituisce una raccolta in tempo reale di tutti i nodi di attributo registrati nel nodo specificato. È una {{domxref("NamedNodeMap")}}, non un <code>Array</code>, quindi non ha metodi predefiniti degli {{jsxref("Array")}} e non ha i metodi {{domxref("Attr")}} dei nodi che possono differire tra i browser. Per essere più specifici, <code>attributes</code> è una coppia chiave/valore di stringhe che rappresenta qualsiasi informazione riguardante quell'attributo.</p>
-
-<h2 id="Syntax" name="Syntax">Sintassi</h2>
-
-<pre class="syntaxbox">var <em>attr</em> =<em> element</em>.attributes;
-</pre>
-
-<h2 id="Example" name="Example">Esempio</h2>
-
-<h3 id="Esempi_basilari">Esempi basilari</h3>
-
-<pre class="brush: js">// Ottenere il primo elemento &lt;p&gt; nel documento
-var para = document.getElementsByTagName("p")[0];
-var atts = para.attributes;</pre>
-
-<h3 id="Enumerating_elements_attributes" name="Enumerating_elements_attributes">Enumerazione degli attributi degli elementi</h3>
-
-<p>L'indicizzazione numerica è utile per passare attraverso tutti gli attributi di un elemento.<br>
- L'esempio seguente esegue i nodi dell'attributo per l'elemento nel documento con id "paragraph" e stampa il valore di ciascun attributo.</p>
-
-<pre class="brush: html">&lt;!DOCTYPE html&gt;
-
-&lt;html&gt;
-
- &lt;head&gt;
- &lt;title&gt;Attributes example&lt;/title&gt;
- &lt;script type="text/javascript"&gt;
- function listAttributes() {
- var paragraph = document.getElementById("paragraph");
- var result = document.getElementById("result");
-
- // First, let's verify that the paragraph has some attributes
- if (paragraph.hasAttributes()) {
- var attrs = paragraph.attributes;
- var output = "";
- for(var i = attrs.length - 1; i &gt;= 0; i--) {
- output += attrs[i].name + "-&gt;" + attrs[i].value;
- }
- result.value = output;
- } else {
- result.value = "No attributes to show";
- }
- }
- &lt;/script&gt;
- &lt;/head&gt;
-
-&lt;body&gt;
- &lt;p id="paragraph" style="color: green;"&gt;Sample Paragraph&lt;/p&gt;
- &lt;form action=""&gt;
- &lt;p&gt;
- &lt;input type="button" value="Show first attribute name and value"
- onclick="listAttributes();"&gt;
- &lt;input id="result" type="text" value=""&gt;
- &lt;/p&gt;
- &lt;/form&gt;
-&lt;/body&gt;
-&lt;/html&gt;</pre>
-
-<h2 id="Specifiche">Specifiche</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specifica</th>
- <th scope="col">Stato</th>
- <th scope="col">Commento</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('DOM WHATWG', '#dom-element-attributes', 'Element.attributes')}}</td>
- <td>{{Spec2('DOM WHATWG')}}</td>
- <td>Da {{SpecName('DOM3 Core')}}, spostato da {{domxref("Node")}} a {{domxref("Element")}}</td>
- </tr>
- <tr>
- <td>{{SpecName('DOM3 Core', 'core.html#ID-84CF096', 'Element.attributes')}}</td>
- <td>{{Spec2('DOM3 Core')}}</td>
- <td>Nessun cambiamento da {{SpecName('DOM2 Core')}}</td>
- </tr>
- <tr>
- <td>{{SpecName('DOM2 Core', 'core.html#ID-84CF096', 'Element.attributes')}}</td>
- <td>{{Spec2('DOM2 Core')}}</td>
- <td>Nessun cambiamento da {{SpecName('DOM1')}}</td>
- </tr>
- <tr>
- <td>{{SpecName('DOM1', 'level-one-core.html#ID-84CF096', 'Element.attributes')}}</td>
- <td>{{Spec2('DOM1')}}</td>
- <td>Definizione iniziale.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Compatibilità_con_i_browser">Compatibilità con i browser</h2>
-
-<div class="hidden">
-<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
-</div>
-
-<p>{{Compat("api.Element.attributes")}}</p>
-
-<h2 id="Vedi_anche">Vedi anche</h2>
-
-<ul>
- <li>{{domxref("NamedNodeMap")}}, l'interfaccia dell'oggetto restituito</li>
- <li>Considerazioni sulla compatibilità con ross-browser: su <a class="external" href="http://www.quirksmode.org/dom/w3c_core.html#attributes" title="http://www.quirksmode.org/dom/w3c_core.html#attributes">quirksmode</a></li>
-</ul>