Atributo de tipo HTML <menuitem>

El atributo de tipo en la etiqueta <menuitem> se utiliza para definir el tipo de comandos de los elementos del menú.  

Sintaxis:

<menuitem type="command|checkbox|radio">

Valores de atributos:

  • comando: Tiene un valor predeterminado. Define una orden estándar con una acción
  • casilla de verificación: define un comando que se puede alternar usando una casilla de verificación
  • radio: Define un comando que se puede alternar usando un botón de radio

Ejemplo: El siguiente código HTML demuestra el uso del atributo de tipo en el elemento <menuitem>. 

HTML

<!DOCTYPE html>
<html>
  
<head></head>
  
<body>
    <center>
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
  
        <h2>HTML <menuitem> type 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="menuID">
  
                <menu label="Share on...">
                    <menuitem label="Twitter" 
                              type="command"
                              onclick=
"window.open('//twitter.com/intent/tweet?text='+ window.location.href);">
                    </menuitem>
                    <menuitem label="Pinterest" 
                              type="command" 
                              onclick=
"window.open('http://pinterest.com/pin/create/button/?url='+ window.location.href);">
                    </menuitem>
                </menu>
  
                <menuitem label="Email This Page" 
                          type="command" 
                          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:

HTML <menuitem> type Attribute”><figcaption>HTML <menuitem> type Attribute</figcaption></figure>
<p><strong>Supported Browser:</strong></p>
<ul>
<li>Mozilla Firefox</li>
</ul>
<div class=

Publicación traducida automáticamente

Artículo escrito por GeeksforGeeks y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *