Posted on 2008-07-16 10:20
xan 閱讀(142)
評論(0) 編輯 收藏 所屬分類:
Java
『頁面跳轉』
<a href="login.jsp" target="_self">text</a>
<% response.sendRedirect("login.jsp");%>
<script>window.location="login.jsp"</script>
[base標簽]
base標簽為整個頁面的相對url指定一個共同的基礎URL
<html:base/> 將在輸出的html文件的head中添加進類似<base href="
http://server:port/requestURI"/> 的東東,瀏覽器通過base標簽來把當前HTML文件中所有的相對URL轉換成絕對URL。