javascript每5秒刷新一次图像会使web浏览器崩溃吗?

javascript每5秒刷新一次图像会使web浏览器崩溃吗?,javascript,android,Javascript,Android,我在html页面中有一个简单的javascript代码,每5秒刷新一个图像: function refresh() { var unique = new Date(); document.images.EdwinImage.src = "http://192.168.0.125:8002/img?width=800&height=480&rnd=" + unique.getTime(); } 这段代码在桌面浏览器上运行良好,但在Android上,它只运行了一段时

我在html页面中有一个简单的javascript代码,每5秒刷新一个图像:

function refresh() {
    var unique = new Date();
    document.images.EdwinImage.src = "http://192.168.0.125:8002/img?width=800&height=480&rnd=" + unique.getTime();
}
这段代码在桌面浏览器上运行良好,但在Android上,它只运行了一段时间,然后浏览器关闭,没有错误消息并返回主屏幕。 崩溃后,我查看浏览器设置(通过设置->应用程序->管理应用程序),发现浏览器应用程序有55MB缓存。。。这似乎是问题所在。。。即使我不需要缓存图像,因为我每次都请求一个新的图像。是的,我有正确的html头来禁用缓存

以下是我使用的标题:

<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="PRAGMA" content="no-cache">
<meta http-equiv="expires" content="0">

我在Archos HT7V2上使用Android 2.2,我尝试的所有浏览器(股票浏览器、opera mini、dolphin hd)都出现了问题

我怎样才能解决这个问题?或者知道发生了什么?
谢谢,

我们可以看到“禁用缓存的正确标题”吗?您在什么设备和Android平台版本上观察到这一点?