“Wyłącz przycisk” Kod odpowiedzi

Przycisk Wyłącz JavaScript

//disable the button
document.getElementById(BUTTON_ID).disabled = true;
//reable the button
document.getElementById(BUTTON_ID).removeAttribute('disabled');
Friendly Hawk

Wyłącz przycisk

// Makes the button disabled

document.getElementById("myButtonId").setAttribute("disabled", ""); 

// Removes disabled attribute

document.getElementById("myButtonId").removeAttribute("disabled");
ayaan

Przycisk HTML wyłączony

<button type="button" disabled>This button is disabled</button>
Strange Stag

Odpowiedzi podobne do “Wyłącz przycisk”

Pytania podobne do “Wyłącz przycisk”

Więcej pokrewnych odpowiedzi na “Wyłącz przycisk” w JavaScript

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

Przeglądaj inne języki kodu