HTML menu 標(biāo)簽參考手冊(cè) HTML <menu> 標(biāo)簽

label 屬性規(guī)定了菜單的可見(jiàn)標(biāo)簽,請(qǐng)參考下述示例:

實(shí)例

帶有兩個(gè)菜單按鈕("File" 和 "Edit")的工具欄,每個(gè)按鈕都是一個(gè)帶有一系列選項(xiàng)的下拉菜單:

<menu type="toolbar">
<li>
<menu label="File">
<button type="button" onclick="file_new()">New...</button>
<button type="button" onclick="file_open()">Open...</button>
<button type="button" onclick="file_save()">Save</button>
</menu>
</li>
<li>
<menu label="Edit">
<button type="button" onclick="edit_cut()">Cut</button>
<button type="button" onclick="edit_copy()">Copy</button>
<button type="button" onclick="edit_paste()">Paste</button>
</menu>
</li>
</menu>

嘗試一下 ?

瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

目前幾乎沒(méi)有主流瀏覽器支持 label 屬性。


定義和用法

label 屬性規(guī)定了菜單的可見(jiàn)標(biāo)簽。

label 屬性通常用于顯示菜單內(nèi)嵌套的菜單標(biāo)簽。


HTML 4.01 與 HTML5之間的差異

在 HTML5 中,重定義了 <menu> 元素,且新增了 label 屬性。


語(yǔ)法

<menu label="text">

屬性值

描述
text規(guī)定菜單的可見(jiàn)標(biāo)簽。


HTML menu 標(biāo)簽參考手冊(cè) HTML <menu> 標(biāo)簽