源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟教程(runoob.com)</title> <script> function setAlign() { alert("Some javaScript...."); } </script> </head> <body> <menu> <command type="radio" label="Left" onclick="setAlign('left')">Left</command> <command type="radio" label="Center" disabled onclick="setAlign('center')">Center</command> <command type="radio" label="Right" onclick="setAlign('right')">Right</command> </menu> <p><b>注意:</b> Internet Explorer 9 支持 disabled 属性。</p> </body> </html>
运行结果: