我有这段代码以设定的时间间隔刷新图像:
<img src="http://somwhere/picture.jpg" id="refreshimage1" onload=”setTimeout('document.getElementById(\'refreshimage1\').src=\'http://somwhere/picture.jpg?\'+new Date().getMilliseconds()', 15000)" width="400" border="1" />
问题是,我需要每 15 秒刷新一次图像,效果很好。但是...我一夜之间打开了网页,今天在 Firefox 中有 15GB 的缓存,而我的 c:\ 驱动器上没有可用空间。(每页大约有20张图片,全部使用这个刷新代码。
那么,有没有办法添加到这段代码中,并让它在设定的时间后停止?就像 5 分钟后它可能会停止刷新图像?