JavaScript使浏览器不使用缓存
Posted liujiale
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript使浏览器不使用缓存相关的知识,希望对你有一定的参考价值。
方法一:
script标签中src链接,或者link标签的href链接,后面加上版本号:
<script type=‘text/javascript‘ src=‘//site.com/js.js?v=1.0.0‘><\/script> <link rel="stylesheet" href="index.css?time=20180910">
方法二:
js生成时间戳:
document.write(‘<link rel="stylesheet" href="index.css?time=‘+new Date().getTime()+‘">‘);。
方法三:
css的meta标签设置不缓存
<meta HTTP-EQUIV="pragma" CONTENT="no-cache"> <meta HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate"> <meta HTTP-EQUIV="expires" CONTENT="0"> <meta http-equiv="Cache" content="no-cache">
以上是关于JavaScript使浏览器不使用缓存的主要内容,如果未能解决你的问题,请参考以下文章
Python 自动化 - 浏览器chrome打开F12开发者工具自动Paused in debugger调试导致无法查看网站资源问题原因及解决方法,javascript反调试问题处理实例演示(代码片段