El atributo deshabilitado para el elemento <optgroup> en HTML se usa para especificar que el grupo de opciones está deshabilitado. Un grupo de opciones deshabilitado no se puede hacer clic ni se puede usar. Es un atributo booleano.
Sintaxis:
<optgroup disabled>option value...</optgroup>
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>HTML <optgroup> disabled Attribute</title> </head> <body style = "text-align:center"> <h1 style = "color: green;">GeeksforGeeks</h1> <h2>HTML optgroup disabled Attribute</h2> <select> <!--A disabled optgroup--> <optgroup label="Sorting Algorithms" disabled> <option value="merge">Merge sort</option> <option value="quick">Quick sort</option> </optgroup> </select> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo deshabilitado <optgroup> se enumeran a continuación:
- safari de manzana
- Google Chrome 1.0
- Borde 12
- Firefox 1.0
- Ópera
- Internet Explorer 8.0
Publicación traducida automáticamente
Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA