“Przycisk Wyłącz 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

Wykonaj przycisk Wyłączony JavaScript

// Makes the button disabled

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

// Removes disabled attribute

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

Przycisk Wyłącz JavaScript

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

przycisk Wyłącz w JS

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

Włącz przycisk HTML

$('#Button').prop('disabled', true);
Different Dragonfly

Wyłącz przycisk w JavaScript

//to enable btn
let temp
   temp = document.getElementById("saveBtnId") as HTMLButtonElement
   if (temp) {
     temp.removeAttribute('disabled');
   }

//disable
if (temp) {
     temp.disabled = true;
   }
Mohan Eswar

Odpowiedzi podobne do “Przycisk Wyłącz JavaScript”

Pytania podobne do “Przycisk Wyłącz JavaScript”

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

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

Przeglądaj inne języki kodu