我在Firefox中尝试了以下功能,但它不起作用,但它不在IE 7和8中 - 页面刷新但我在IE中刷新时无法看到图像。 提前谢谢。
使用Javascript:
window.onload = show;
function show() {
document.getElementById("img444").style.display="none";
setTimeout("hide()", 5000); // 5 seconds
}
function hide() {
document.getElementById("img444").style.display="block";
window.location.reload(false);
}
HTML:
<img id="img444" src="images/indicator.gif" style="display: none;"/>
答案 0 :(得分:0)
我根据@ gov的评论更改了代码,它在IE7和Firefox上都有效。
所以它也适合你