aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/element/hasattributes/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/element/hasattributes/index.html')
-rw-r--r--files/it/web/api/element/hasattributes/index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/files/it/web/api/element/hasattributes/index.html b/files/it/web/api/element/hasattributes/index.html
new file mode 100644
index 0000000000..ca408ca96d
--- /dev/null
+++ b/files/it/web/api/element/hasattributes/index.html
@@ -0,0 +1,28 @@
+---
+title: element.hasAttributes
+slug: Web/API/Element/hasAttributes
+tags:
+ - DOM
+ - Gecko
+ - Reference_del_DOM_di_Gecko
+ - Tutte_le_categorie
+translation_of: Web/API/Element/hasAttributes
+---
+<p>{{ ApiRef() }}</p>
+<h3 id="Sommario" name="Sommario">Sommario</h3>
+<p>Restituisce un valore booleano: <code>true</code> se l'elemento ha un qualunque numero di attributi, altrimenti <code>false</code>.</p>
+<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
+<p>
+ <i>
+ bool</i>
+ = element.hasAttributes()</p>
+<h3 id="Esempio" name="Esempio">Esempio</h3>
+<pre>t1 = document.getElementById("tabella-dati");
+if (t1.hasAttributes()) {
+ // fai qualcosa con
+ // t1.attributes
+}
+</pre>
+<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
+<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-NodeHasAttrs">hasAttributes </a></p>
+<p>{{ languages( { "en": "en/DOM/element.hasAttributes", "fr": "fr/DOM/element.hasAttributes", "pl": "pl/DOM/element.hasAttributes" } ) }}</p>