目录

HTML DOM menu 对象


菜单对象

Menu 对象代表一个 HTML <menu> 元素。

笔记:目前任何主要浏览器都不支持 <menu> 元素。

访问菜单对象

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

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

创建菜单对象

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

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

菜单对象属性

Property Description
label Sets or returns the value of the label attribute of the menu
type Sets or returns the value of the type attribute of the menu

标准属性和事件

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


相关页面

HTML 参考:HTML <菜单> 标签