<c:redirect> 標簽
<c:redirect> 標簽
<c:redirect>標簽通過自動重寫URL來將瀏覽器重定向至一個新的URL,它提供內容相關的URL,并且支持c:param標簽。
語法格式
<c:redirect url="<string>" context="<string>"/>
屬性
c:redirect標簽有如下屬性:
屬性 | 描述 | 是否必要 | 默認值 |
---|---|---|---|
url | 目標URL | 是 | 無 |
context | 緊接著一個本地網絡應用程序的名稱 | 否 | 當前應用程序 |
實例演示
如果你需要向 <c:import> 標簽傳遞參數, 請先用 <c:url> 標簽來創建URL地址,如下所示:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <html> <head> <title>c:redirect 標簽實例</title> </head> <body> <c:redirect url="http://www.runoob.com"/> </body> </html>
瀏覽器打開以上頁面將跳轉至 http://www.runoob.com。