“Desativar o botão em html” Respostas de código

Javascript Desativar o botão

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

Botão HTML desativado

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

Ativar botão HTML

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

Botão HTML Desativar

<button disabled>Click me</button>
Ill Iguana

Desativar o botão em html

let button = document.getElementById("btn");
button.setAttribute("disabled","true");
button.style.pointerEvents = "none";
button.style.opacity = 0.5;
Disturbed Dogfish

Respostas semelhantes a “Desativar o botão em html”

Perguntas semelhantes a “Desativar o botão em html”

Mais respostas relacionadas para “Desativar o botão em html” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código