小编典典

如何使后退按钮上的页面失效?

jsp

我在jsp页面中添加了以下元标记

<html>
<head>
<title>xyz</title>
<link type='text/css' rel="stylesheet" href="sdsds/sdsd"/>
<meta content="max-age=0" http-equiv="cache-control">
<meta content="no-store" http-equiv="cache-control">
<meta content="-1" http-equiv="expires">
<meta content="Tue, 01 Jan 1980 1:00:00 GMT" http-equiv="expires">
<meta content="no-cache" http-equiv="pragma">
</head>
<body><h1>jsdsdsds</h1>
<a href="abc">click me</a>
</body>
</html>

通过单击链接“单击我”导航后,我将打开一个新页面。当我单击后退按钮时,它正在工作..我希望页面过期。.注意:在两个jsp页面中,我都添加了相同的meta标签。我尝试添加这个

<%@ page import="java.lang.*" %>
<%
// Set to expire far in the past.
response.setHeader("Expires", "Sat, 6 May 1971 12:00:00 GMT");
// Set standard HTTP/1.1 no-cache headers.
response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
// Set IE extended HTTP/1.1 no-cache headers (use addHeader).
response.addHeader("Cache-Control", "post-check=0, pre-check=0");
// Set standard HTTP/1.0 no-cache header.
response.setHeader("Pragma", "no-cache");
response.setDateHeader ("Expires", 0); //prevents caching at the proxy server
%>

在HTML上方和Head ..内部都可以看到后页。,在mozilla firefox 10.0和IE8中进行了测试有什么建议吗?


阅读 232

收藏
2020-06-08

共1个答案

小编典典

只要不涉及会话,您就无法使浏览器的后退按钮上的页面失效。它可以进行许多用户的后向浏览,因此这取决于您希望用户浏览网站的方式。您实际上需要处理浏览器的后退按钮。有几种方法可以做到。突出的是在javascript中使用此代码:

window.history.forward();

`,但会将您的后退请求转发到历史记录中的当前页面。对我有用的是:

<script type="text/javascript">
function noBack(){
            location.replace(logouturl);
            window.location="logouturl";
}

的HTML

<input type="button" value="SignOut" onclick="noBack()" align="middle">
2020-06-08