问题描述
是浏览器,不是flash,没有权限去删除啊,有人写过相关的吗?谢谢啦
解决方案
解决方案二:
http://woshixy.blog.51cto.com/5637578/1186427看看这个
解决方案三:
html5有一个新增的技术,自动清理页面缓存,不知道对你有帮助么,http://www.w3school.com.cn/html5/html_5_app_cache.asp
解决方案四:
1.禁止客户端缓存要在<head>中加入类似如下内容:<METAHTTP-EQUIV="pragma"CONTENT="no-cache"><METAHTTP-EQUIV="Cache-Control"CONTENT="no-cache,must-revalidate"><METAHTTP-EQUIV="expires"CONTENT="Wed,26Feb199708:21:57GMT">或<metahttp-equiv="pragma"content="no-cache"><metahttp-equiv="cache-control"content="no-cache"><metahttp-equiv="expires"content="0">2.在服务器的动态网页中禁止缓存,要加入类似如下脚本response.setHeader("Pragma","No-cache");response.setHeader("Cache-Control","no-cache");response.setDateHeader("Expires",0);参考
时间: 2024-12-31 02:50:33