zoukankan      html  css  js  c++  java
  • JSP中<base href="<%=basePath%>">的作用

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

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

    <base href="value">为页面上所有相对 URL 规定基准 URL:

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

    定义和用法

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

    语法

    <base href="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="xxx.htm"></a>

  • 相关阅读:
    知多少进程?
    提高.NET应用性能
    战术设计DDD
    win7下exe文件设置为开机启动
    CQRS项目
    DDD总览
    ML.Net Model Builder
    MySQL主主复制搭建教程收集(待实践)
    MySQL主从复制搭建教程收集(待实践)
    MySQL集群方案收集
  • 原文地址:https://www.cnblogs.com/ys-wuhan/p/5855663.html
Copyright © 2011-2022 走看看