ข้อมูลอ้างอิงHTML

HTML โดยตัวอักษร HTML ตามหมวดหมู่ รองรับ HTML Browser แอตทริบิวต์ HTML HTML Global Attributes เหตุการณ์ HTML HTML สี HTML Canvas HTML เสียง/วิดีโอ ชุดอักขระ HTML HTML Doctypes การเข้ารหัส URL HTML รหัสภาษา HTML รหัสประเทศ HTML ข้อความ HTTP วิธี HTTP ตัวแปลง PX เป็น EM แป้นพิมพ์ลัด


HTML <menitem>แท็ก


ตัวอย่าง

เมนูบริบทที่มีองค์ประกอบ <menuitem> ต่างกัน:

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

ความหมายและการใช้งาน

แท็ก <menuitem> เลิกใช้แล้วใน HTML5

แท็ก <menuitem> กำหนดรายการคำสั่ง/เมนูที่ผู้ใช้สามารถเรียกใช้จากเมนูป๊อปอัป


รองรับเบราว์เซอร์

ตัวเลขในตารางระบุเบราว์เซอร์รุ่นแรกที่สนับสนุนองค์ประกอบอย่างสมบูรณ์

Element
<menuitem> Not supported Not supported 8.0
(for context menus)
Not supported Not supported


คุณลักษณะ

Attribute Value Description
checked checked Specifies that the command/menu item should be checked when the page loads. Only for type="radio" or type="checkbox"
command    
default default Marks the command/menu item as being a default command
disabled disabled Specifies that the command/menu item should be disabled
icon URL Specifies an icon for the command/menu item
label text Required. Specifies the name of the command/menu item, as shown to the user
radiogroup groupname Specifies the name of the group of commands that will be toggled when the command/menu item itself is toggled. Only for type="radio"
type checkbox
command
radio
Specifies the type of command/menu item. Default is "command"

คุณสมบัติสากล

แท็ก <menuitem> ยังสนับสนุนGlobal Attributes ใน HTML


คุณสมบัติของเหตุการณ์

แท็ก <menuitem> ยังสนับสนุนแอตทริบิวต์เหตุการณ์ใน HTML


หน้าที่เกี่ยวข้อง

การอ้างอิง HTML DOM: MenuItem Object