MenuItem 对象表示 HTML <menuitem> 元素。
注释:只有 Firefox 支持 <menuitem> 元素。
您可以通过使用 getElementById() 来访问 <menuitem> 元素:
var x = document.getElementById("myMenuItem");
您可以通过使用 document.createElement() 方法来创建 <menuitem> 元素:
var x = document.createElement("MENUITEM");
属性 | 描述 |
---|---|
checked | 设置或返回是否选中菜单项。 |
command | 设置或返回菜单项的 command 属性值。 |
default | 设置或返回菜单项是否是默认命令。 |
disabled | 设置或返回是否禁用菜单项。 |
icon | 设置或返回表示菜单项的图像。 |
label | 设置或返回菜单项的 label 属性值。 |
radiogroup | 设置或返回菜单项的 radiogroup 属性值。 |
type | 设置或返回菜单项的 type 属性值。 |
HTML 参考手册: HTML <menuitem> 标签