首页  >  文章  >  后端开发  >  使用ajax防止页面缓存的代码

使用ajax防止页面缓存的代码

WBOY
WBOY原创
2016-07-25 09:03:41984浏览
复制代码

asp网页

  1. response.expires=-1
  2. response.expiresabsolute=now()-1
  3. response.cachecontrol="no-cache"
  4. %>
复制代码

php网页

  1. header("expires:mon,26jul199705:00:00gmt");
  2. header("cache-control:no-cache,must-revalidate");
  3. header("pragma:no-cache");
  4. ?>
复制代码

jsp网页

  1. response.addHeader("pragma", "no-cache");
  2. response.addHeader("cache-control", "no-cache,must-revalidate");
  3. response.addHeader("expires", "0");
复制代码


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn