如果是chrome浏览器:
一、可以使用ctrl+shift+R来强制跳过缓存刷新页面
二 、也可以使用 ctrl+shift+delete 来选择要删除的浏览记录
JSP清理缓存的方法:在jsp页里
<%response.setHeader("Pragma","No-cache")
response.setHeader("Cache-Control","no-cache")
response.setDateHeader("Expires", 0)
response.flushBuffer()%>
在html页里:
<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="0">
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)