The Menu object represents an HTML <menu> element.
注: The <menu> element is currently NOT supported in any of the major browsers.
You can access a <menu> element by using getElementById():
var x = document.getElementById("myMenu");
You can create a <menu> element by using the document.createElement() method:
var x = document.createElement("MENU");
Property | 説明 |
---|---|
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 |
The Menu object also supports the standard properties and events.
HTML reference: HTML <menu> tag