HTML <menu> label 屬性

實例

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

<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> 

瀏覽器支援

IE Firefox Chrome Safari Opera

目前主流瀏覽器都不支援支援 label 屬性。

定義和用法

label 屬性規定菜單的可見標籤。

label 屬性常用於標記菜單內的巢狀菜單。

HTML 4.01 與 HTML 5 之間的差異

在 HTML5 中重新定義了 <menu> 元素,而 label 則是新的屬性。

語法

<menu label="text">

屬性值

描述
text 為菜單規定可見的標籤。