MenuItem 对象表示 HTML <menuitem> 元素。
笔记:目前仅 Firefox 支持 <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 |
HTML 参考:HTML <menuitem> 标签
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!