HTML 5 <command> 标签
定义和用法
<command> 标签定义命令按钮,比如单选按钮、复选框或按钮。
HTML 4.01 与 HTML 5 之间的差异
<command> 标签是 HTML 5 中的新标签。
属性
属性 | 值 | 描述 |
---|---|---|
checked | true | false | 定义是否被选中。仅用于 radio 或 checkbox 类型。 |
default | true | false | 如果为 true,则被激活。仅用于该 command 位于菜单中时。 |
disabled | true | false | 定义 command 是否可用。 |
hidden | true | false | 定义 command 是否可见。 |
icon | url | 定义作为 command 来显示的图像的 url。 |
label | command name | 为 command 定义名称。label 是可见的。 |
radiogroup | name of radiogroup | 定义该 command 所属的 radiogroup 的名称。仅在类型为 radio 时使用。 |
type |
|
定义该 command 的类型。默认是 command。 |
标准属性
class, contenteditable, contextmenu, dir, draggable, id, irrelevant, lang, ref, registrationmark, tabindex, template, title
如需完整的描述,请访 HTML 5 中标准属性。
事件属性
onabort, onbeforeunload, onblur, onchange, onclick, oncontextmenu, ondblclick, ondrag, ondragend, ondragenter, ondragleave, ondragover, ondragstart, ondrop, onerror, onfocus, onkeydown, onkeypress, onkeyup, onload, onmessage, onmousedown, onmousemove, onmouseover, onmouseout, onmouseup, onmousewheel, onresize, onscroll, onselect, onsubmit, onunload
如需完整的描述,请访 HTML 5 中事件属性。