目录

HTML DOM menuitem 对象


菜单项对象

MenuItem 对象表示 HTML <menuitem> 元素。

笔记:目前仅 Firefox 支持 <menuitem> 元素。

访问 MenuItem 对象

您可以使用 getElementById() 访问 <menuitem> 元素:

var x = document.getElementById("myMenuItem");

创建一个菜单项对象

您可以使用 document.createElement() 方法创建 <menuitem> 元素:

var x = document.createElement("MENUITEM");

菜单项对象属性

Property Description
checked Sets or returns whether the menu item should be checked
command Sets or returns the value of the command attribute of the menu item
default Sets or returns whether the menu item should be the default command
disabled Sets or returns whether the menu item should be disabled
icon Sets or returns an image that represents the menu item
label Sets or returns the value of the label attribute of the menu item
radiogroup Sets or returns the value of the radiogroup attribute of the menu item
type Sets or returns the value of the type attribute of the menu item

标准属性和事件

MenuItem 对象还支持标准特性事件


相关页面

HTML 参考:HTML <menuitem> 标签