首页 > 代码库 > JSP中<base href=http://www.mamicode.com/"">的作用

JSP中<base href=http://www.mamicode.com/"">的作用

来源于:http://fanshuyao.iteye.com/blog/2097229

首先了解是什么是<base href="">

 

<base href="http://www.mamicode.com/value">为页面上所有相对 URL 规定基准 URL:

 

Html代码  技术分享
  1. <head>  
  2. <base href=http://www.mamicode.com/"http://www.w3school.com.cn/i/" />  
  3. </head>  
  4.   
  5. <body>  
  6. <img src=http://www.mamicode.com/"eg_smile.gif" />  
  7. </body>  

 

 

定义和用法

href 属性规定页面中所有相对链接的基准 URL。

 

语法

<base href="http://www.mamicode.com/value">

属性值

值 描述
URL作为基准 URL 的绝对 URL(比如 "http://www.example.com/")。

 

 

 

Java代码  技术分享
  1. <%  
  2. String path = request.getContextPath();  
  3. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  
  4. %>  

 

获取当前项目的路径,如:http://localhost:8080/项目名称/。

 

设置基础路径的,basePath为变量,简单的静态网页的话你设置比如:

<base href="http://www.baidu.com">,那你下面的href属性就会以你上面设的为基准,

如:<a href="http://www.baidu.com/xxx.htm"></a>,你现在就只需要写<a href="http://www.mamicode.com/xxx.htm"></a>

JSP中<base href=http://www.mamicode.com/"">的作用