最新的Web開發教程
 

HTML <menu> label Attribute

<HTML <menu>標籤

使用的label屬性:

<menu type="context" id="mymenu">
  <menuitem label="Refresh" onclick="window.location.reload();" icon="ico_reload.png">
  </menuitem>
  <menu label="Share on...">
    <menuitem label="Twitter" icon="ico_twitter.png"
    onclick="window.open('//twitter.com/intent/tweet?text='+window.location.href);">
    </menuitem>
    <menuitem label="Facebook" icon="ico_facebook.png"
    onclick="window.open('//facebook.com/sharer/sharer.php?u='+window.location.href);">
    </menuitem>
  </menu>
  <menuitem label="Email This Page"
  onclick="window.location='mailto:?body='+window.location.href;"></menuitem>
</menu>
試一試»

定義和用法

label屬性指定菜單可見標籤。

label屬性經常被用來在菜單內標籤嵌套菜單。


瀏覽器支持

在表中的數字指定完全支持屬性所述第一瀏覽器的版本。

屬性
label 不支持 不支持 8 不支持 不支持

HTML 4.01和HTML5之間的差異

<menu>元素被重新定義在HTML5和label屬性是新的。


句法

<menu label="text">

屬性值

描述
text 指定一個可見標籤的菜單

<HTML <menu>標籤