Najnowsze tutoriale tworzenie stron internetowych
 

HTML DOM removeAttribute() Method

<Element Przedmiot

Przykład

Wyjąć class atrybutu z <h1> element:

document.getElementsByTagName("H1")[0].removeAttribute("class");

Przed wyjęciem atrybut:

Hello World

Po usunięciu atrybutu:

Hello World

Spróbuj sam "

Definicja i Wykorzystanie

removeAttribute() sposób usuwa specified cechę z elementu.

Różnica pomiędzy tym sposobem i removeAttributeNode() sposobu jest to, że removeAttributeNode() sposób usuwa określony obiekt ATTR, a sposób ten usuwa atrybut o określonej nazwie. Wynik będzie taki sam. Również ten sposób nie ma wartości powrotu, a removeAttributeNode() sposób wraca do removed cechę, jako przedmiot Attr.

Ważne: Z getAttribute() aby zwrócić wartość atrybutu elementu.

Wskazówka: Użyj setAttribute() metodę, aby dodać atrybut do elementu.


Wsparcie przeglądarka

metoda
removeAttribute() tak tak tak tak tak

Składnia

element .removeAttribute( attributename )

wartości parametrów

Parametr Rodzaj Opis
attributename String Wymagany. Nazwa atrybutu chcesz usunąć

Szczegóły techniczne

Zwracana wartość: Nie zwraca wartości
DOM Version Poziom Rdzeń 1 elementu obiektu

Przykłady

Więcej przykładów

Przykład

Wyjąć href atrybutu z <a> element:

document.getElementById("myAnchor").removeAttribute("href");

Przed wyjęciem atrybut:

Po usunięciu atrybutu:

Go to w3ii.com
Spróbuj sam "

Podobne strony

HTML Tutorial: Atrybuty HTML

HTML DOM: href="met_element_hasattribute.html"> hasAttribute() Method

HTML DOM: href="met_element_getattribute.html"> getAttribute() Method

HTML DOM: href="met_element_setattribute.html"> setAttribute() Method


<Element Przedmiot