带有两个菜单按钮("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>
IE | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
目前主流浏览器都不支持支持 type 属性。
type 属性规定菜单的类型。
在 HTML5 中重新定义了 <menu> 元素,而 type 则是新的属性。
<menu type="value">
值 | 描述 |
---|---|
list | 默认。规定列表菜单。一个用户可执行或激活的命令列表(li 元素)。 |
context | 规定上下文菜单。该菜单必须在用户能够与命令进行交互之前被激活。 |
toolbar | 规定工具栏菜单。活动式命令,允许用户立即与命令进行交互。 |
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛
Powered by 365建站网 RSS地图 HTML地图
copyright © 2013-2024 版权所有 鄂ICP备17013400号