“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

Wyłączony JavaScript

// Makes the button disabled

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

// Removes disabled attribute

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

JavaScript GetElementById wyłącz

//javascript getelementbyid disable
//Enable a button
document.getElementById("Button").disabled=false;

//Disable a button
document.getElementById("Button").disabled=true;
Jaskaran

Odpowiedzi podobne do “Wyłączony JavaScript”

Pytania podobne do “Wyłączony JavaScript”

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

Przeglądaj inne języki kodu