BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <script> function setAlign() { alert("Some javaScript...."); } </script> </head> <body> <menu> <command label="Left" onclick="setAlign('left')" radiogroup="alignment" type="radio">Left</command> <command label="Center" onclick="setAlign('center')" radiogroup="alignment" type="radio">Center</command> <command label="Right" onclick="setAlign('right')" radiogroup="alignment" type="radio">Right</command> </menu> <p><b>注意:</b> 目前,几乎所有的主流浏览器都不支持 radiogroup 属性。</p> </body> </html>
运行结果