非常感謝你們。有一個偉大的夜晚/天
所有我想要做的是通過檢查小區的ID的javascript更改表格單元格的圖片src。
我已經看過堆棧溢出及其解決方案的每一個相關問題。出於某種原因,我的代碼將無法工作。最有可能的語法/睡眠不足問題
這JS腳本在一個表中,坐落在src上面,我試圖改變取決於事情:
<script>
function getImage(){
return "http://i.imgur.com/s5WKBjy.png"; //i literally just want to see if this works and it isn't
}
document.onload = function(){
document.getElementById('homeimage').src = getImage();
};
</script>
<td colspan="3"><img style="width:110px;height:128px;" id = "homeimage" onload="getImage()"></td>
<td colspan = "3"><img style="width:150px;height:128px;" id = "homeimage"></td>
既不上述工作。使用onload =「getImage()」而不使用。我是愚蠢的嗎?我必須明白我缺少的東西。
您應該在窗口上綁定onload事件。 – Jai
id是unique.multiple元素不能有相同的ID –
我已經指出,在我的答案:) – WPMed