AJAX防止页面缓存的代码
采用AJAX技术的时候 通常我们无刷新页面提交数据后 用同样的url去获取数据的时候会发现是以前的数据~那样就给client端带来假象了~~ 采用以下的方法可以取消缓存
htm网页
metahttp-equiv="pragma"content="no-cache">
metahttp-equiv="cache-control"content="no-cache,must-revalidate">
metahttp-equiv="expires"content="wed,26feb199708:21:57gmt">
或者metahttp-equiv="expires"content="0">
asp网页
response.expires=-1
response.expiresabsolute=now()-1
response.cachecontrol="no-cache"
php网页
header("expires:mon,26jul199705:00:00gmt");
header("cache-control:no-cache,must-revalidate");
header("pragma:no-cache");
jsp网页
response.addHeader("pragma", "no-cache");
response.addHeader("cache-control", "no-cache,must-revalidate");
response.addHeader("expires", "0");
您可能感兴趣的文章:- AJAX 缓存问题的两种解决方法(IE)
- 防止jQuery ajax Load使用缓存的方法小结
- jQuery ajax cache缓存问题
- Jquery中Ajax 缓存带来的影响的解决方法
- 如何解决Ajax请求结果的缓存问题说明
- ajax缓存问题解决途径
- Ajax清除浏览器js、css、图片缓存的方法
- ajax的get请求时缓存处理解决方法
- 解析浏览器端的AJAX缓存机制
- Ajax对缓存的处理方法实例分析