HTML
通过添加meta标签
<meta http-equiv= "pragma" content= "no-cache"/> (pragma: 杂注)
<meta http-equiv= "Cache-Control" content= "no-cache, must-revalidate"/> (不缓存,必须重新开始)
<meta http-equiv= "expires" content= "Thu, 01 Jan 1970 00:00:01 GMT"/> (过期时间设为以前)
<meta http-equiv= "expires" content= "0"/> (立刻过期)
ajax请求
XMLHttpRequest.setRequestHeader("If-Modified-Since","0"); (下次请求时需要此参数作为条件请求条件,设为0可阻止条件请求,详情可查看:http://www.cnblogs.com/yanze/p/7451620.html)
XMLHttpRequest.setRequestHeader("Cache-Control","no-cache");
在 Ajax 的 URL 参数后加上 "?fresh=" + Math.random();
在 URL 参数后加上 "?timestamp=" + new Date().getTime();
(都是通过添加随机数,欺骗浏览器请求地址变了,让它不发送条件请求)