标签: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">
标签:index 版本 方法 val res eval pre sheet 设置
原文地址:https://www.cnblogs.com/liujiale/p/10937618.html