后退时,使网页失效
一段时间内提交表单时,点击后退按钮时,还可以提交表单。一时找不到解决方法,也就没再过多考虑,今天突然找到解决方法。
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
也可这样写。
<%
response.setHeader("pragma","no-cache");
response.setHeader("cache-control","no-cache");
response.setDateHeader("expires",0);
%>
再后退的时候,网页就会失效或过期。
或是使用struts的时候,使用token来处理这个问题。
手机扫一扫,关注程序员技能成长
成长的乐趣,在于分享!
|