“Wykonaj przycisk Wyłączony JavaScript” 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

Jak wyłączyć wszystkie przyciski w JavaScript

$("input[type=button]").attr("disabled", "disabled");
Gorgeous Goosander

Wykonaj przycisk Wyłączony JavaScript

// 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

Przycisk Wyłącz JavaScript

document.getElementById(BUTTON_ID).disabled = true;
Lovely Lion

przycisk Wyłącz w JS

document.getElementById("submitButtonId").disabled = true;
Weary Weevil

Odpowiedzi podobne do “Wykonaj przycisk Wyłączony JavaScript”

Pytania podobne do “Wykonaj przycisk Wyłączony JavaScript”

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

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

Przeglądaj inne języki kodu