El atributo HTML <menuitem> disabled es un atributo booleano que especifica si el elemento del menú se deshabilitará o no. No se puede hacer clic en el elemento de menú deshabilitado y, por lo general, se ve de color grisáceo .
Sintaxis:
<menuitem disabled>
Ejemplo: El siguiente código demuestra el uso del atributo deshabilitado en la etiqueta <menuitem> .
HTML
<!DOCTYPE html> <html> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h2>HTML <menuitem> disabled Attribute</h2> <div style="background:green; border:2px solid black; padding: 10px;" contextmenu="geeks"> <p>A Computer Science Portal for Geeks</p> <menu type="context" id="geeks"> <menu label="Share on..."> <menuitem label="Twitter" onclick= "window.open('//twitter.com/intent/tweet?text=' + window.location.href);" disabled> </menuitem> <menuitem label="Pinterest" onclick= "window.open( 'http://pinterest.com/pin/create/button/?url=' + window.location.href);"> </menuitem> </menu> <menuitem label="Email This Page" onclick="window.location='mailto:?body=' + window.location.href;"> </menuitem> </menu> </div> <p>A Computer Science Portal for Geeks</p> <hr> <p>Right click on green div and see the menuitem </center> </body> </html>
Producción:
Navegadores compatibles:
- MozillaFirefox 8.0
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA