W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <head> <script type="text/javascript"> function bgChange(bg) { document.getElementById('x').style.background="url(" + bg + ")" } </script> </head> <body> <p>本例演示如何向单选按钮插入背景图像。</p> <p>请把鼠标移动到图像上,单选按钮会获得一幅背景图像:</p> <table width="300" height="100"> <tr> <td onmouseover="bgChange('/i/eg_bg_03.gif')" background="/i/eg_bg_03.gif"> </td> <td onmouseover="bgChange('/i/eg_bg_04.gif')" background="/i/eg_bg_04.gif"> </td> </tr> </table> <form> 请把鼠标移动到图像上: <input id="x" type="radio" checked> </form> </body> </html>