jsp回退并刷新页面
在jsp中代码:<scripttype="text/javascript">functiondoAction(){alert("操作成功!");window.histor...
在jsp中代码:
<script type="text/javascript">
function doAction(){
alert("操作成功!");
window.history.go(-1);
}
</script>
</head>
<body onload="doAction()">
</body>
但是回退后如何把原来的页面清空呢?
1楼的不行啊 展开
<script type="text/javascript">
function doAction(){
alert("操作成功!");
window.history.go(-1);
}
</script>
</head>
<body onload="doAction()">
</body>
但是回退后如何把原来的页面清空呢?
1楼的不行啊 展开
3个回答
展开全部
在页面前面加上下面代码
<%
response.setHeader("Cache-Control", "no-store"); //HTTP 1.1
response.setHeader("Pragma", "no-cache"); //HTTP 1.0
response.setDateHeader("Expires", 0); //prevents caching at the proxy server
%>
这段代码是禁止页面缓存。这样你在调用window.history.go(-1); 的时候不会从缓存里取页面,而是直接刷新之前的页面
<%
response.setHeader("Cache-Control", "no-store"); //HTTP 1.1
response.setHeader("Pragma", "no-cache"); //HTTP 1.0
response.setDateHeader("Expires", 0); //prevents caching at the proxy server
%>
这段代码是禁止页面缓存。这样你在调用window.history.go(-1); 的时候不会从缓存里取页面,而是直接刷新之前的页面
展开全部
在页面前面加上下面代码
<%
response.setHeader("Cache-Control",
"no-store");
//HTTP
1.1
response.setHeader("Pragma",
"no-cache");
//HTTP
1.0
response.setDateHeader("Expires",
0);
//prevents
caching
at
the
proxy
server
%>
这段代码是禁止页面缓存。这样你在调用window.history.go(-1);
的时候不会从缓存里取页面,而是直接刷新之前的页面
<%
response.setHeader("Cache-Control",
"no-store");
//HTTP
1.1
response.setHeader("Pragma",
"no-cache");
//HTTP
1.0
response.setDateHeader("Expires",
0);
//prevents
caching
at
the
proxy
server
%>
这段代码是禁止页面缓存。这样你在调用window.history.go(-1);
的时候不会从缓存里取页面,而是直接刷新之前的页面
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
window.reload()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询