-
重新刷新几次,直到缓存被刷掉 ☆
-
在改变的资源后面加上版本号,也就是例如index.html?v=1234654
<script>
if (!window.name) {
var str = Math.random().toString(36).substr(2); //随机字符串
window.location.href += '?S=' + str; //兼容微信浏览器刷新
window.name = 'isreload'; //name 属性可设置或返回存放窗口的名称的一个字符串。
}
</script>
复制代码
-
安卓的可以打开这个网址进行缓存清理: http://debugx5.qq.com/
-
使用meta来禁用缓存 ☆
<meta HTTP-EQUIV="pragma" CONTENT="no-cache">
<meta HTTP-EQUIV="Cache-Control" CONTENT="no-store, must-revalidate">
<meta HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT">
<meta HTTP-EQUIV="expires" CONTENT="0">