通常在JSP页面开通有如下代码:
Java代码 收藏代码
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
这段代码的意思是获取当前项目的路径,如:http://localhost:8080/项目名称。
在<head></head>中通常有如下代码:
Java代码 收藏代码
<base href="<%=basePath%>">
这是设置基础路径的,basePath为变量,简单的静态网页的话你设置比如:<base href=",那你下面的href属性就会以你上面设的为基准,如" target="_blank" rel="nofollow">http://www.baidu.com">,那你下面的href属性就会以你上面设的为基准,如:<a href="http://www.baidu.com/xxx.htm"></a>你现在就只需要写<a href="xxx.htm"></a>
el表达式用法
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:set var="basepath" value="${pageContext.request.contextPath}/"></c:set>
<html>
<head>
<base href="${basepath}">
共同学习,写下你的评论
评论加载中...
作者其他优质文章