首页 > 代码库 > 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代码
- <head>
- <base href=http://www.mamicode.com/"http://www.w3school.com.cn/i/" />
- </head>
- <body>
- <img src=http://www.mamicode.com/"eg_smile.gif" />
- </body>
定义和用法
href 属性规定页面中所有相对链接的基准 URL。
语法
<base href="http://www.mamicode.com/value">
属性值
值 描述URL | 作为基准 URL 的绝对 URL(比如 "http://www.example.com/")。 |
Java代码
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- %>
获取当前项目的路径,如: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/"">的作用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。