La propiedad deshabilitada del rango de entrada DOM se usa para establecer o devolver si el campo de rango de entrada debe estar deshabilitado o no . Un campo de rango 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.
rangeObject.disabled
- Se utiliza para establecer la propiedad deshabilitada.
rangeObject.disabled = true|false
Valores de propiedad:
- true: Define que el campo Rango de entrada está deshabilitado.
- Falso: Tiene un valor por defecto. Define que el campo Rango de entrada no está deshabilitado.
Valor devuelto: Devuelve un valor booleano que representa que el Campo de rango 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 Range disabled Property </title> </head> <style> #Geek_p { font-size: 30px; color: green; } </style> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input Range disabled property </h2> <form id="geeks"> <input name=G eek_range type="range" id="Geek_Range" value="90" disabled> </form> <br> <br> <button onclick="myGeeks()"> Click Here </button> <p id="Geek_p"></p> <script> function myGeeks() { // Return input range property. var x = document.getElementById( "Geek_Range").disabled; document.getElementById( "Geek_p").innerHTML = x; } </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 Range disabled Property </title> </head> <style> #Geek_p { font-size: 30px; color: green; } </style> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input Range disabled property </h2> <form id="geeks"> <input name=G eek_range type="range" id="Geek_Range" value="90" disabled> </form> <br> <br> <button onclick="myGeeks()"> Click Here </button> <p id="Geek_p"> </p> <script> function myGeeks() { // Set input range disabled property var x = document.getElementById( "Geek_Range").disabled = false; document.getElementById( "Geek_p").innerHTML = x; } </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 range disabled Property se enumeran a continuación:
- Google Chrome
- Internet Explorer 10.0 +
- 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