">作用">

JSP中作用


通常在JSP页面开通有如下代码:

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

段代码的意思是获取当前项目的路径,如:http://localhost:8080/项目名称。

 

在<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>


原文链接:http://lzc0088.iteye.com/blog/504015

你可能感兴趣的:(JSP中作用)