Przykład
Wyjąć class węzeł atrybutu z <h1> element:
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>
Przed wyjęciem węzeł atrybutu:
Hello World
Po usunięciu węzeł atrybutów:
Hello World
Spróbuj sam " Definicja i Wykorzystanie
removeAttributeNode() sposób usuwa specified cechę z elementu i zwraca removed atrybut jako obiekt Attr węzła .
Różnica pomiędzy tym sposobem i removeAttribute() sposobu jest to, że removeAttribute() sposób usuwa atrybut o podanej nazwy, a sposób ten usuwa określony obiekt ATTR. Wynik będzie taki sam. Również removeAttribute() metoda ma wartość powrotną, a metoda ta zwraca removed cechę, jako przedmiot Attr.
Ważne: Z getAttributeNode() aby zwrócić węzeł atrybutu elementu.
Wskazówka: Użyj setAttributeNode() metodę, aby dodać węzeł atrybutu do elementu.
Wsparcie przeglądarka
metoda | |||||
---|---|---|---|---|---|
removeAttributeNode() | tak | tak | tak | tak | tak |
Składnia
element .removeAttributeNode( attributenode )
wartości parametrów
Parametr | Rodzaj | Opis |
---|---|---|
attributenode | Attr object | Wymagany. Węzeł atrybut chcesz usunąć |
Szczegóły techniczne
Zwracana wartość: | Przedmiotem Attr reprezentujący removed węzeł atrybutu |
---|---|
DOM Version | Poziom Rdzeń 1 elementu obiektu |
Więcej przykładów
Przykład
Wyjąć href węzeł atrybutu z <a> element:
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>
Przed wyjęciem węzeł atrybutu:
Po usunięciu węzeł atrybutów:
Go to w3ii.com
Spróbuj sam " Podobne strony
HTML Tutorial: Atrybuty HTML
HTML DOM: DOM HTML atrybutu obiektu
HTML DOM: href="met_element_removeattribute.html"> removeAttribute() Method
HTML DOM: href="met_element_getattributenode.html"> getAttributeNode() Method
HTML DOM: href="met_element_setattributenode.html"> setAttributeNode() Method