我正在使用Javascript來更改HTML屬性,在我的情況下,我有兩個相同燈泡開關的照片,我使用2個按鈕以「開啓」和「關閉」燈泡,但現在我想將這兩個按鈕替換爲第一個圖像中開啓的同一開關的兩個圖像,以及第二個圖像中開關關閉的圖像,如何操作?JavaScript:更改HTML屬性
<!DOCTYPE html>
<html>
<body>
<h1>What Can JavaScript Do?</h1>
<p>JavaScript can change HTML attributes.</p>
<p>In this case JavaScript changes the src (source) attribute of an image.</p>
<button onclick="document.getElementById('myImage').src='pic_bulbon.gif'">Turn on the light</button>
<img id="myImage" src="pic_bulboff.gif" style="width:100px">
<button onclick="document.getElementById('myImage').src='pic_bulboff.gif'">Turn off the light</button>
</body>
</html>
的可能的複製[如何添加/更新使用JavaScript的HTML元素的屬性?](http://stackoverflow.com/questions/710275/how-to-add-update-an -attribute-to-html-element-using-javascript) –