“JavaScript Dodaj atrybut” Kod odpowiedzi

JavaScript Dodaj atrybut

var element = document.getElementById('btnBuild');
element.setAttribute("disabled", "disabled");
Ganz404

Jak dodać atrybut do wybranego elementu w JavaScript

	// Selecting the element
    var btn = document.getElementById("myBtn");
	
    // Setting new attributes
    btn.setAttribute("class", "click-btn");
    btn.setAttribute("disabled", "");
Gogo Dev

setAttribute ()

element.setAttribute(name, value);
element.setAttribute("style", "background-color: red;");
vrai_gamin

Ustaw właściwość Dom javascrpt

document.getElementsByTagName("H1")[0].setAttribute("class", "democlass");
Poor Puffin

Ustaw atrybut javascript

Element.setAttribute(name, value);
Kaotik

Umieść nowy atrybut na znaczniku HTML za pomocą JavaScript

// Here's what you do for the style attribute
span.setAttribute("style", "width:110%;float:center;left-margin:-10px;top-margin:-10;");
Fancy Fly

Odpowiedzi podobne do “JavaScript Dodaj atrybut”

Pytania podobne do “JavaScript Dodaj atrybut”

Więcej pokrewnych odpowiedzi na “JavaScript Dodaj atrybut” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu