html5设置不缓存

<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">

使用meta元素的http-equiv属性来模拟HTTP头部信息,从而实现不缓存的效果。

其中,Cache-Control用于控制缓存,no-cache表示不缓存;

Pragma为HTTP/1.0的遗留属性,表示不使用缓存;

Expires则指定过期时间为0,即不缓存。