如何用 HTML 以编程方式清除浏览器缓存?
你可以使用以下元标签告诉浏览器不要缓存你的页面 -
<metahttp-equiv = 'cache-control' content = 'no-cache'> <metahttp-equiv = 'expires' content = '0'> <metahttp-equiv = 'pragma' content = 'no-cache'>
此外,尝试以下操作: 将一个参数/字符串附加到脚本标签中的文件名。当文件更改时更改它。
<scriptsrc = "newfile.js?version = 1.0.0"></script>
然后,下次更新文件时,只需更新版本,即
<scriptsrc = "newfile.js?version = 1.0.1"></script>
广告