亚洲区国产区激情区无码区,国产成人mv视频在线观看,国产A毛片AAAAAA,亚洲精品国产首次亮相在线

HTML 參考手冊(cè)

HTML 標(biāo)簽大全

HTML menu label 屬性

label 屬性規(guī)定了menu的可見(jiàn)標(biāo)簽,label 屬性通常用于顯示menu內(nèi)嵌套的菜單標(biāo)簽。

 HTML <menu> 標(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>
測(cè)試看看 ?/?

瀏覽器兼容性

IEFirefoxOperaChromeSafari

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

定義和用法

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

label 屬性通常用于顯示menu內(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)簽