http://woshixy.blog.51cto.com/5637578/1186427
看看这个

解决方案 »

  1.   

    html5有一个新增的技术,自动清理页面缓存,不知道对你有帮助么,http://www.w3school.com.cn/html5/html_5_app_cache.asp
      

  2.   

    1. 禁止客户端缓存要在<head>中加入类似如下内容: 
    <META HTTP-EQUIV="pragma" CONTENT="no-cache"> 
    <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate"> 
    <META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT"> 
    或   <meta http-equiv="pragma" content="no-cache"> 
         <meta http-equiv="cache-control" content="no-cache"> 
         <meta http-equiv="expires" content="0">   
    2. 在服务器的动态网页中禁止缓存,要加入类似如下脚本 
    response.setHeader("Pragma","No-cache"); 
    response.setHeader("Cache-Control","no-cache"); 
    response.setDateHeader("Expires", 0);  参考 jsp页面不使用缓存