首页 > 代码库 > 设置html页面不让浏览器缓存的方法

设置html页面不让浏览器缓存的方法

在html页面head标签之间添加以下标识可以避免大多数浏览器缓存:

<meta http-equiv="Pragma" content="no-cache" />   
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Expires" content="0" />