JAVA-JSP内置对象之response对象实现页面自动跳转
Posted 疯狂delphi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA-JSP内置对象之response对象实现页面自动跳转相关的知识,希望对你有一定的参考价值。
相关资料:
《21天学通Java Web开发》
response对象
实现页面自动跳转
1.可以通过response对象的addHeader()方法添加一个标题为Refresh的标头,并指定页面跳转时间及跳转页面,从而实现页面自动跳转。
ResponseDemo3.jsp
1 <%@ page language="java" contentType="text/html;charset=gb2312" %>
2 <html>
3 <head>
4 <title>设置页面自动跳转</title>
5 </head>
6 <body>
7 <%-- 使用response对象的addHeader实现页面自动跳转 --%>
8 <%
9 response.addHeader("Refresh","10;URL=http://www.baidu.com");
10 %>
11 <h4>该页面10秒后自动跳转到百度首页</h4>
12 </body>
13 </html>
以上是关于JAVA-JSP内置对象之response对象实现页面自动跳转的主要内容,如果未能解决你的问题,请参考以下文章