W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <body> <h1>我的第一段 JavaScript</h1> <p>在这里,JavaScript 更改了图像的 src 属性。</p> <script> function light(sw) { var pic; if (sw == 0) { pic = "/i/eg_bulboff.gif" } else { pic = "/i/eg_bulbon.gif" } document.getElementById('myImage').src = pic; } </script> <img id="myImage" src="/i/eg_bulboff.gif" width="109" height="180"> <p> <button type="button" onclick="light(1)">开灯</button> <button type="button" onclick="light(0)">关灯</button> </p> </body> </html>