“hacer botón deshabilitado” Código de respuesta

Botón de desactivación de JavaScript

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

hacer botón deshabilitado

// Makes the button disabled

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

// Removes disabled attribute

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

Botón HTML deshabilitado

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

Respuestas similares a “hacer botón deshabilitado”

Preguntas similares a “hacer botón deshabilitado”

Más respuestas relacionadas con “hacer botón deshabilitado” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código