--- 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 ---
{{ ApiRef() }}
Restituisce un valore booleano: true
se l'elemento ha un qualunque numero di attributi, altrimenti false
.
bool = element.hasAttributes()
t1 = document.getElementById("tabella-dati"); if (t1.hasAttributes()) { // fai qualcosa con // t1.attributes }
{{ languages( { "en": "en/DOM/element.hasAttributes", "fr": "fr/DOM/element.hasAttributes", "pl": "pl/DOM/element.hasAttributes" } ) }}