1. 程式人生 > >JSP中作用

JSP中作用

通常在JSP頁面開通有如下程式碼:

<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

在<head></head>中通常有如下程式碼:

<base href="<%=basePath%>">

這是設定基礎路徑的,basePath為變數,簡單的靜態網頁的話你設定比如:<base href="

http://www.baidu.com">,那你下面的href屬性就會以你上面設的為基準,如:<a href="http://www.baidu.com/xxx.htm"></a>你現在就只需要寫<a href="xxx.htm"></a>