html menu標籤可以定義了一個命令清單或選單,通常用於文字選單,工具列和命令清單選項中。目前所有主流瀏覽器都不支援 5c0e96d12fc7501cef2ae2efde646ee0 標籤。請使用 CSS 來設定選單列表的樣式!
html menu標籤怎麼用?
作用:定義指令的清單或選單。
說明:用於上下文功能表、工具列以及用於列出表單控制項和命令。
註解:目前所有主流瀏覽器都不支援 5c0e96d12fc7501cef2ae2efde646ee0 標籤。請使用 CSS 來設定選單列表的樣式!
html menu標籤 範例
<!DOCTYPE html> <html> <body> <menu type="toolbar"> <li> <menu label="File"> <button type="button" onclick="file_new()">新建</button> <button type="button" onclick="file_open()">打开</button> <button type="button" onclick="file_save()">保存</button> </menu> </li> <li> <menu label="Edit"> <button type="button" onclick="edit_cut()">剪切</button> <button type="button" onclick="edit_copy()">复制</button> <button type="button" onclick="edit_paste()">粘贴</button> </menu> </li> </menu> <p><b>注释:</b>所有主流浏览器均不支持 menu 元素。</p> </body> </html>
以上是html menu標籤怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!