La propiedad Fieldset disabled en HTML DOM se usa para establecer o devolver si un fieldset está deshabilitado o no . Un elemento Deshabilitado es inutilizable y no se puede hacer clic en él y, por lo general, se muestra en color gris de forma predeterminada. Esta propiedad se utiliza para reflejar el atributo HTML deshabilitado.
Sintaxis:
- Devuelve la propiedad deshabilitada:
fieldsetObject.disabled
- Se utiliza para establecer la propiedad deshabilitada:
fieldsetObject.disabled = true|false
Valores de propiedad:
- verdadero: el conjunto de campos está deshabilitado.
- false: Tiene un valor por defecto. El conjunto de campos no está deshabilitado.
Valor de retorno: Devuelve un valor booleano que representa si el conjunto de campos está deshabilitado o no.
Ejemplo-1: este ejemplo devuelve la propiedad deshabilitada.
html
<!DOCTYPE html> <html> <head> <title> DOM fieldset disabled Property </title> <style> h1, h2, .title { text-align: center; } fieldset { width: 50%; margin-left: 22%; } h1 { color: green; } button { margin-left: 35%; } </style> </head> <body> <h1> GeeksforGeeks </h1> <h2> DOM fieldset disabled Property </h2> <form> <div class="title"> Suggest article for video: </div> <fieldset id="GFG" disabled> <legend>JAVA:</legend> Title: <input type="text"> <br> Link: <input type="text"> <br> User ID: <input type="text"> </fieldset> </form> <br> <button onclick="Geeks()"> Submit </button> <p id="sudo" style="font-size:25px; text-align:center;"> </p> <script> function Geeks() { var g = document.getElementById( "GFG").disabled; document.getElementById( "sudo").innerHTML = g; } </script> </body> </html>
Producción:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Ejemplo-2: Este ejemplo establece la propiedad deshabilitada.
html
<!DOCTYPE html> <html> <head> <title> DOM fieldset disabled Property </title> <style> h1, h2, .title { text-align: center; } fieldset { width: 50%; margin-left: 22%; } h1 { color: green; } button { margin-left: 35%; } </style> </head> <body> <h1> GeeksforGeeks </h1> <h2> DOM fieldset disabled Property </h2> <form> <div class="title"> Suggest article for video: </div> <fieldset id="GFG"> <legend>JAVA:</legend> Title: <input type="text"> <br> Link: <input type="text"> <br> User ID: <input type="text"> </fieldset> </form> <br> <button onclick="Geeks()"> Submit </button> <script> function Geeks() { var g = document.getElementById("GFG"); /* check the fieldset is disable or not */ g.disabled = true; /* name property of fieldset*/ g.name; } </script> </body> </html>
Producción:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con la propiedad deshabilitada DOM Fieldset se enumeran a continuación:
- Google Chrome
- Borde 12 y superior
- explorador de Internet
- Firefox
- Ópera 12 y superior
- Safari 6 y superior
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA