Esempio
Rimuovere la class nodo di attributi da un <h1> Elemento:
var elmnt = document.getElementsByTagName("H1")[0]; // Get the first
<h1> element in the document
var attr = elmnt.getAttributeNode("class");
// Get the class attribute node from <h1>
elmnt.removeAttributeNode(attr);
// Remove the class attribute node from <h1>
Prima di rimuovere il nodo attributo:
Hello World
Dopo aver rimosso il nodo attributo:
Hello World
Prova tu stesso " Definizione e l'utilizzo
Il removeAttributeNode() metodo rimuove il specified attributo da un elemento, e restituisce il removed attributo, come un oggetto Attr Node .
La differenza tra questo metodo e il removeAttribute() metodo, è che il removeAttribute() metodo rimuove l'attributo con il nome specificato, mentre questo metodo rimuove l'oggetto Attr specificato. Il risultato sarà lo stesso. Inoltre, il removeAttribute() metodo non restituisce alcun valore, mentre questo metodo restituisce il removed attributo, come un oggetto Attr.
Tip: Utilizzare la getAttributeNode() metodo per restituire un nodo di attributi di un elemento.
Tip: Utilizzare la setAttributeNode() metodo per aggiungere un nodo di attributi di un elemento.
Supporto browser
Metodo | |||||
---|---|---|---|---|---|
removeAttributeNode() | sì | sì | sì | sì | sì |
Sintassi
element .removeAttributeNode( attributenode )
valori dei parametri
Parametro | Tipo | Descrizione |
---|---|---|
attributenode | Attr object | Necessario. Il nodo attributo che si desidera rimuovere |
Dettagli tecnici
Valore di ritorno: | Un oggetto Attr, che rappresenta il removed nodo attributo |
---|---|
DOM Version | Nucleo Livello 1 elemento OBJECT |

Altri esempi
Esempio
Rimuovere il href nodo di attributi da un <a> elemento:
var elmnt = document.getElementById("myAnchor"); // Get the <a> element
with id="myAnchor"
var attr = elmnt.getAttributeNode("href");
// Get the href attribute node from <a>
elmnt.removeAttributeNode(attr);
// Remove the href attribute node from <a>
Prima di rimuovere il nodo attributo:
Dopo aver rimosso il nodo attributo:
Go to w3ii.com
Prova tu stesso " Pagine correlate
HTML Tutorial: attributi HTML
HTML DOM Riferimento: Il HTML DOM attributo dell'oggetto
HTML DOM Riferimento: href="met_element_removeattribute.html"> removeAttribute() Method
HTML DOM Riferimento: href="met_element_getattributenode.html"> getAttributeNode() Method
HTML DOM Riferimento: href="met_element_setattributenode.html"> setAttributeNode() Method