HTML5 <command> 标签
定义和用法
command 元素表示用户能够调用的命令。
<command> 标签可以定义命令按钮,比如单选按钮、复选框或按钮。
只有当 command 元素位于 menu 元素内时,该元素才是可见的。否则不会显示这个元素,但是可以用它规定键盘快捷键。
实例
标记一个按钮:
<menu> <command onclick="alert('Hello World')"> Click Me!</command> </menu>
浏览器支持
目前只有 Internet Explorer 支持 <command> 标签。
HTML 4.01 与 HTML 5 之间的差异
<command> 标签是 HTML 5 中的新标签。
属性
属性 | 值 | 描述 |
---|---|---|
checked | checked | 定义是否被选中。仅用于 radio 或 checkbox 类型。 |
disabled | disabled | 定义 command 是否可用。 |
icon | url | 定义作为 command 来显示的图像的 url。 |
label | text | 为 command 定义可见的 label。 |
radiogroup | groupname | 定义 command 所属的组名。仅在类型为 radio 时使用。 |
type |
|
定义该 command 的类型。默认是 "command"。 |