1)JSP页面的刷新问题:在论坛里看到,如果是定时刷新就可以用response.setHeader("refresh","1"),那如果不想定时刷新而是进页面时强制刷新一次怎么做呢?
2)在页面A作出选择后,跳到页面B。页面B处理完返回页面A,用什么样的方法才可以返回的时候仍然保存页面A原先的选择(即相当于“后退”按钮)?
万分感谢! :))
8 个解决方案
#1
(1)在页面的onload事件中添加代码,如
<body onload = "javascript:window.location.reload();"> //实现效果:刷新所在页面
(2)这个问题我好象以前跟贴过,你搜索下“刷新”关键字。。。
<body onload = "javascript:window.location.reload();"> //实现效果:刷新所在页面
(2)这个问题我好象以前跟贴过,你搜索下“刷新”关键字。。。
#2
(1)我加代码进去了:<body bgcolor="#FFFFFF" text="#000000"
onload = "javascript:window.location.reload();">
但为什么它好象一直在刷新(表现为闪动)而进不去页面呢?
onload = "javascript:window.location.reload();">
但为什么它好象一直在刷新(表现为闪动)而进不去页面呢?
#3
(1)网页中加入:
<meta http-equiv='Expires' content='-10'>
<meta http-equiv='Pragma' content='No-cache'>
<meta http-equiv='Cache-Control', 'private'>
那个代码好像是当你在进入本业的时候一直在刷新本页
(2)用javascript:
<input type="button" value="返回" name="B1" onclick="javascript:history.back(1)">
<meta http-equiv='Expires' content='-10'>
<meta http-equiv='Pragma' content='No-cache'>
<meta http-equiv='Cache-Control', 'private'>
那个代码好像是当你在进入本业的时候一直在刷新本页
(2)用javascript:
<input type="button" value="返回" name="B1" onclick="javascript:history.back(1)">
#4
response.addHeader("Cache-Control", "no-cache");
response.addHeader("Expires", "Thu, 01 Jan 1970 00:00:01 GMT");
//让你的也面保持在最新状态
response.addHeader("Expires", "Thu, 01 Jan 1970 00:00:01 GMT");
//让你的也面保持在最新状态
#5
use javascript
<input type="button"
value="返回"name="back"onclick="javascript:history.back(-1)">
<input type="button"
value="返回"name="back"onclick="javascript:history.back(-1)">
#6
罪过罪过,我那段代码是用于刷性框架的,对你这个单页面的没有用:)
同意: pcdos(流浪) ( ) 的意见
同意: pcdos(流浪) ( ) 的意见
#7
out.print("<script language='javascript'>history.go(-1);</script>");
#8
用这个试试response.sendRedirect("your jsp file url");
#1
(1)在页面的onload事件中添加代码,如
<body onload = "javascript:window.location.reload();"> //实现效果:刷新所在页面
(2)这个问题我好象以前跟贴过,你搜索下“刷新”关键字。。。
<body onload = "javascript:window.location.reload();"> //实现效果:刷新所在页面
(2)这个问题我好象以前跟贴过,你搜索下“刷新”关键字。。。
#2
(1)我加代码进去了:<body bgcolor="#FFFFFF" text="#000000"
onload = "javascript:window.location.reload();">
但为什么它好象一直在刷新(表现为闪动)而进不去页面呢?
onload = "javascript:window.location.reload();">
但为什么它好象一直在刷新(表现为闪动)而进不去页面呢?
#3
(1)网页中加入:
<meta http-equiv='Expires' content='-10'>
<meta http-equiv='Pragma' content='No-cache'>
<meta http-equiv='Cache-Control', 'private'>
那个代码好像是当你在进入本业的时候一直在刷新本页
(2)用javascript:
<input type="button" value="返回" name="B1" onclick="javascript:history.back(1)">
<meta http-equiv='Expires' content='-10'>
<meta http-equiv='Pragma' content='No-cache'>
<meta http-equiv='Cache-Control', 'private'>
那个代码好像是当你在进入本业的时候一直在刷新本页
(2)用javascript:
<input type="button" value="返回" name="B1" onclick="javascript:history.back(1)">
#4
response.addHeader("Cache-Control", "no-cache");
response.addHeader("Expires", "Thu, 01 Jan 1970 00:00:01 GMT");
//让你的也面保持在最新状态
response.addHeader("Expires", "Thu, 01 Jan 1970 00:00:01 GMT");
//让你的也面保持在最新状态
#5
use javascript
<input type="button"
value="返回"name="back"onclick="javascript:history.back(-1)">
<input type="button"
value="返回"name="back"onclick="javascript:history.back(-1)">
#6
罪过罪过,我那段代码是用于刷性框架的,对你这个单页面的没有用:)
同意: pcdos(流浪) ( ) 的意见
同意: pcdos(流浪) ( ) 的意见
#7
out.print("<script language='javascript'>history.go(-1);</script>");
#8
用这个试试response.sendRedirect("your jsp file url");