- 0133技术站
- 联系QQ:88526
- QQ交流群
- 微信公众号
表明该元素已被选择, 除非元素的type 属性是 checkbox 或者 radio,否则该属性必须被省略.
目前,几乎所有的主流浏览器都不支持 checked 属性。
<command> 标签是 HTML5 中的新标签。
在 XHTML 中,禁止属性最小化,checked 属性必须定义为
<command checked="checked">
<command checked>
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script> function setAlign() { alert("Some javaScript...."); } </script> </head> <body> <menu> <command type="radio" label="Left" checked onclick="setAlign('left')">Left <command type="radio" label="Center" onclick="setAlign('center')">Center <command type="radio" label="Right" onclick="setAlign('right')">Right </menu> </body> </html>
点击 "运行实例" 按钮查看在线实例
推荐手册