当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Menu用法及代码示例


DOM菜单对象用于表示HTML <menu>元素。此标记定义命令列表。它用于上下文菜单,工具栏以及列出表单控件和命令。

用法:

  • 访问菜单对象
    var y = document.getElementById("myMenu");
  • 创建菜单对象
    var y = document.createElement("MENU");

属性:

  • label:它设置或返回菜单的label属性的值。
  • type:它设置或返回菜单的type属性的值。

示例1:访问菜单对象。

<!DOCTYPE html> 
<html> 
  
<body> 
  
    <div style="background:green; 
                padding:10px;" 
         contextmenu="MENU"> 
        <p>Right-click inside the box  
          to see the context menu!!!</p> 
  
        <menu type="context" 
              id="MENU"> 
            <menuitem label="Refresh" 
                      onclick="window.location.reload();"
                      icon="ico_reload.png"> 
          </menuitem> 
  
            <menuitem label="Email This Page" 
                      onclick="window.location= 
                         'mailto:?body='
                               +window.location.href;"> 
          </menuitem> 
        </menu> 
  
    </div> 
    <script> 
        function Geeks() { 
            var y = document.getElementById("MENU"); 
  
        } 
    </script> 
  
    <p>This example can work only on Firefox!</p> 
  
</body> 
  
</html>

输出:



示例-2:创建菜单对象。

<!DOCTYPE html> 
<html> 
  
<body> 
  
    <div style="background:pink; 
                padding:10px;" 
         contextmenu="MENU"> 
        <p>Right-click inside the box  
          to see the context menu!!!</p> 
  
        <menu type="context"
              id="MENU"> 
            <menuitem label="Refresh"
                      onclick="window.location.reload();"
                      icon="ico_reload.png"> 
          </menuitem> 
  
            <menuitem label="Email This Page"
                      onclick="window.location= 
                               'mailto:?body='
                               +window.location.href;"> 
          </menuitem> 
        </menu> 
  
    </div> 
    <script> 
        function Geeks() { 
            
           //creating menu 
            var y =  
                document.createElement("MENU");  
  
            document.getElementById("MENU"); 
        } 
    </script> 
  
    <p>This example can work only on Firefox!</p> 
  
</body> 
  
</html>

输出:

支持的浏览器:

  • Mozilla Firefox-8.0

相关用法


注:本文由纯净天空筛选整理自kartikgoel1999大神的英文原创作品 HTML | DOM Menu Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。