0
所以即時通訊新變化的圖像源,發現這一個解決我的問題:與JavaScript的JavaScript的
Change image source with javascript
但這個例子並不爲我工作。
<script type="text/javascript">
function changeImage(a) {
document.getElementById("img1").src=a;
}
</script>
而且
<table align=left width="896px" class="tableCategories">
<tr class="trCategories">
<td class="tdCategories">
<img id="img1" src="./icon/menu/Essen3.png" onclick='changeImage(Shopping3.png);'/>
</td>
</tr>
</table>
所以,如果我在圖像上單擊它並沒有改變自己。圖像的路徑是正確的。 我在做什麼錯?
在Shopping3.png周圍添加雙引號 – TheBrain 2013-03-23 01:51:53
更改爲onclick ='changeImage(「Shopping3.png」); – 2013-03-23 01:52:00
當你調用你的函數時,在文件名周圍加上引號...... – abellina 2013-03-23 01:52:24