HTML 参考手册
HTML <menu> type 属性
带有两个菜单按钮("File" 和 "Edit")的工具栏,每个按钮都是一个带有一系列选项的下拉菜单
源代码:
点击运行 »
<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>
运行结果:
点击运行 »