La propiedad deshabilitada del texto de entrada DOM se usa para establecer o devolver si el campo de texto de entrada debe estar deshabilitado o no. Un campo de texto deshabilitado no se puede hacer clic ni se puede usar. Es un atributo booleano y se usa para reflejar el atributo HTML deshabilitado. Por lo general, se representa en color gris de forma predeterminada en todos los navegadores.
Sintaxis:
- Devuelve la propiedad deshabilitada.
textObject.disabled
- Se utiliza para establecer la propiedad deshabilitada.
textObject.disabled = true|false
Valores de propiedad:
- true: Define que el campo Input Text está deshabilitado.
- Falso: Tiene un valor por defecto. Define que el campo de texto de entrada no está deshabilitado.
Valor devuelto: Devuelve un valor booleano que representa que el campo de texto de entrada está deshabilitado o no.
Ejemplo-1: Este ejemplo ilustra cómo devolver la propiedad.
html
<!DOCTYPE html> <html> <head> <title> HTML DOM Input Text disabled Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Text disabled Property</h2> <form id="myGeeks"> <input type="text" id="text_id" name="geeks" disabled> </form> <br> <button onclick="myGeeks()">Click Here!</button> <p id="GFG" style="font-size:20px;"></p> <!-- script to return the disabled Property--> <script> function myGeeks() { var txt = document.getElementById("text_id").disabled; document.getElementById("GFG").innerHTML = txt; } </script> </body> </html>
Salida:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Ejemplo-2: Este ejemplo ilustra cómo establecer la propiedad.
html
<!DOCTYPE html> <html> <head> <title> HTML DOM Input Text disabled Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Text disabled Property</h2> <form id="myGeeks"> <input type="text" id="text_id" name="geeks" disabled> </form> <br> <button onclick="myGeeks()">Click Here!</button> <p id="GFG" style="font-size:20px;"></p> <!-- script to set the disabled Property--> <script> function myGeeks() { var txt = document.getElementById("text_id").disabled = false; document.getElementById("GFG").innerHTML = txt; } </script> </body> </html>
Salida:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con DOM input Text disabled Property se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA