label 屬性規(guī)定了menu的可見標(biāo)簽,label 屬性通常用于顯示menu內(nèi)嵌套的菜單標(biāo)簽。
帶有兩個(gè)菜單按鈕("File" 和 "Edit")的工具欄,每個(gè)按鈕都是一個(gè)帶有一系列選項(xiàng)的下拉菜單:
<!DOCTYPE html> <html> <head> <title>HTML:<menu> label 屬性 - 菜鳥教程(cainiaoplus.com)</title> </head> <body> <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> <p><b>注意:</b>目前主流瀏覽器并不支持 menu 標(biāo)簽。</p> </body> </html>測試看看 ?/?
IEFirefoxOperaChromeSafari
目前幾乎沒有主流瀏覽器支持 label 屬性。
label 屬性規(guī)定了menu的可見標(biāo)簽。
label 屬性通常用于顯示menu內(nèi)嵌套的菜單標(biāo)簽。
在 HTML5 中,重定義了 <menu> 元素,且新增了 label 屬性。
<menu label="text">
值 | 描述 |
---|---|
text | 規(guī)定菜單的可見標(biāo)簽。 |