JAVA-JSP內置對象之response對象實現頁面自動跳轉
阿新 • • 發佈:2017-10-15
style cli 分享 ron gif 添加 頁面 con 頁面跳轉
相關資料:
《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>
View Code
JAVA-JSP內置對象之response對象實現頁面自動跳轉