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