码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript使浏览器不使用缓存

时间:2019-05-28 15:40:59      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:index   版本   方法   val   res   eval   pre   sheet   设置   

方法一:

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使浏览器不使用缓存

标签:index   版本   方法   val   res   eval   pre   sheet   设置   

原文地址:https://www.cnblogs.com/liujiale/p/10937618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!