Jsp页⾯跳转和js控制页⾯跳转的⼏种⽅法
Jsp 页⾯跳转的⼏种⽅法
1. RequestDispatcher.forward()
在服务器端起作⽤,当使⽤forward()时,Servlet engine传递HTTP请求从当前的Servlet或者是JSP到另外的⼀个Servlet、JSP 或普通HTML⽂件,也即你的form提交⾄a.jsp,在a.jsp⽤到了forward()重定向⾄b.jsp,此时form提交的所有信息在 b.jsp都可以获得,参数⾃动传递. 但forward()⽆法重定向⾄有frame的jsp⽂件,可以重定向⾄有frame的html⽂件,同时forward()⽆法在后⾯带参数传递,⽐如servlet?name=frank,这样不⾏,可以程序内通过response.setAttribute("name",name)来传⾄下⼀个页⾯。
重定向后浏览器地址栏URL不变。
例:在servlet中进⾏重定向
public void doPost(HttpServletRequest request,HttpServletResponse response)
throws ServletException,IOException{
response.setContentType("text/html; charset=gb2312");
ServletContext sc = getServletContext();
RequestDispatcher rd = null;
rd = sc.getRequestDispatcher("/index.jsp"); //定向的页⾯
rd.forward(request, response);
}
getServletConfig().getServletContext().getRequestDispatcher("
/index.jsp ").forward(request, response);
//转发到 index .jsp
通常在servlet中使⽤,不在jsp中使⽤。
2. response.sendRedirect()
在⽤户的浏览器端⼯作,sendRedirect()可以带参数传递,⽐如servlet?name=frank传⾄下个页⾯,同时它可以重定向⾄不同的主机
上,sendRedirect()可以重定向有frame.的jsp⽂件.
重定向后在浏览器地址栏上会出现重定向页⾯的URL。
例:在servlet中重定向
public void doPost(HttpServletRequest request,HttpServletResponse response)
throws ServletException,IOException{
response.setContentType("text/html; charset=gb2312");
response.sendRedirect("/index.jsp");
}
由于response是jsp页⾯的隐含对象,故在jsp页⾯中可⽤response.sendRedirect()直接实现重定位。
注意:
(1) 使⽤response.sendRedirect时,前⾯不能有HTML输出;
这并不是绝对的,不能有HTML输出其实是指不能有HTML被送到了浏览器。事实上现在的server都有cache机制,⼀般在8K(我是说 JSP SERVER),这就意味着,除⾮你关闭了cache,或者你使⽤了out.flush()强制刷新,那么在使⽤sendRedirect之前,有少量的HTML输出也是允许的。
(2) response.sendRedirect之后,应该紧跟⼀句return。
我们已经知道response.sendRedirect是通过浏览器来做转向的,所以只有在页⾯处理完成后,才会有实际的动作。既然你已经要做转向了,那么后的输出还有什么意义呢?⽽且有可能会因为后⾯的输出导致转向失败。
⽐较:
(1) Dispatcher.forward()是容器中控制权的转向,在客户端浏览器地址栏中不会显⽰出转向后的地址;
(2) response.sendRedirect()则是完全的跳转,浏览器将会得到跳转的地址,并重新发送请求链接。这样,从浏览器的地址栏中可以看到跳转后的链接地址。
前者更加⾼效,在前者可以满⾜需要时,尽量使⽤RequestDispatcher.forward()⽅法。
在有些情况下,⽐如,需要跳转到⼀个其它服务器上的资源,则必须使HttpServletResponse.sendRequest()⽅法
3. <jsp:forward page="" />
它的底层部分是由RequestDispatcher来实现的,因此它带有RequestDispatcher.forward()⽅法的印记。
如果在之前有很多输出,前⾯的输出已使缓冲区满,将⾃动输出到客户端,那么该语句将不起作⽤,这⼀点应该特别注意。
注意:
它不能改变浏览器地址,刷新的话会导致重复提交
4. 修改HTTP header的Location属性来重定向
通过设置直接修改地址栏来实现页⾯的重定向。
jsp⽂件代码如下:
<%
response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);
String newLocn = "/newpath/jsa.jsp";
response.setHeader("Location",newLocn);
%>
5. JSP中实现在某页⾯停留若⼲秒后,⾃动重定向到另⼀页⾯
在html⽂件中,下⾯的代码:
<meta http-equiv="refresh" content="300; url=target.jsp">
它的含义:在5分钟之后正在浏览的页⾯将会⾃动变为target.html这⼀页。代码中300为刷新的延迟时间,以秒为单位。targer.html为你想转向的⽬标页,若为本页则为⾃动刷新本页。
由上可知,可以通过setHeader来实现某页⾯停留若⼲秒后,⾃动重定向到另⼀页⾯。代码:
String content=stayTime+";URL="+URL;
response.setHeader("REFRESH",content);
Js 页⾯跳转(⽗页⾯,外层页⾯,本页⾯)
"window.location.href"、"location.href"是本页⾯跳转
"parent.location.href"是上⼀层页⾯跳转
"top.location.href"是最外层的页⾯跳转
举例说明:
如果A,B,C,D都是jsp,D是C的iframe,C是B的iframe,B是A的iframe,如果D中js这样写"window.location.href"、"location.href":D页⾯跳转
"parent.location.href":C页⾯跳转
"top.location.href":A页⾯跳转
如果D页⾯中有form的话,
: form提交后D页⾯跳转
: form提交后弹出新页⾯
: form提交后C页⾯跳转
: form提交后A页⾯跳转
关于页⾯刷新,D 页⾯中这样写:
"load();": C页⾯刷新(当然,也可以使⽤⼦窗⼝的 opener 对象来获得⽗窗⼝的对象:window.opener.load(); )
"load();": A页⾯刷新
Js 控制页⾯跳转的⼏种⽅法
第⼀种:
<script language="javascript" type="text/javascript">
window.location.href="login.jsp?backurl="+window.location.href;
</script>
第⼆种:
<script language="javascript">
alert("返回");
window.history.back(-1);
</script>
第三种:
<script language="javascript">
window.navigate("top.jsp");
</script>
第四种:
<script language="JavaScript">
self.location='top.htm';
</script>
第五种:
<script language="javascript">
alert("⾮法访问!");
top.location='xx.jsp';
</script>
第六种:
<script type="text/javascript">
/
/ 页⾯若在框架内,则跳出框架
if (self != top) {
top.location = self.location;
};
</script>
第七种:
⾃定义时间跳转(⽅法⼀):
<script language="javascript">
var secs = 3; //倒计时的秒数
var URL ;
function Load(url){
URL = url;
for(var i=secs;i>=0;i--)
{
window.setTimeout('doUpdate(' + i + ')', (secs-i) * 1000);
}
}
function doUpdate(num)
{
if(num == 0) { window.location = URL; }
}
</script>
然后在⾥⾯加上  index.asp为⾃⼰要跳转的页⾯。
在之间加上
⾃定义时间跳转(⽅法⼆):
<p >
系统将在 <span id="time">5</span> 秒钟后⾃动跳转⾄新⽹址,如果未能跳转,<a href="www.jb51" title="点击访问">请点击</a>。<script type="text/javascript">
delayURL();
function delayURL() {
var delay = ElementById("time").innerHTML;
var t = setTimeout("delayURL()", 1000);
if (delay > 0) {
delay--;
} else {
clearTimeout(t);
window.location.href = "www.jb51";
}
}
</script>jsp和html哪个更好

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。