我有一個按鈕,裏面有一個圖像,我想單擊時進行交換。我得到了這部分工作,但現在我也希望它再次點擊時,改回原來的形象。點擊按鈕改變圖像
我正在使用的代碼:
<button onClick="action();">click me<img src="images/image1.png" width="16px" id="ImageButton1"></button>
和JavaScript:
function action() {
swapImage('images/image2.png');
};
var swapImage = function(src) {
document.getElementById("ImageButton1").src = src;
}
提前感謝!
http://stackoverflow.com/questions/10465082/change-button-image-after-click-to-loading-and-then-with-another-image-after-1?rq=1 – 2013-05-19 09:27:19
你忘了問一個問題。 – nnnnnn