我有一個簡單的應用程序和JS代碼後不加載看起來是這樣的:圖像重新加載頁面
function refresh(){
window.location.reload();
document.getElementById("a").src="http://30.media.tumblr.com/tumblr_l8nftqa6oF1qbadnxo1_500.png";
}
按鈕HTML代碼:
<button id="refresh" onclick="refresh()">Refresh</button>
和HTML代碼,其中src
應該看起來像這樣:
<img id="a" style="position:absolute;top:390px;left:15px;height:254px;width:330px">
其餘的代碼有一個輸入類型text
進展良好,但圖像永遠不會正確加載,我已經嘗試了幾件事情,但我是新來的JS,所以不知道如何做到這一點。
嘗試在圖像src上添加時間戳,因爲緩存。 – Chibuzo