码迷,mamicode.com
首页 > Web开发 > 详细

jsp中获取页面的相对路径

时间:2017-08-11 14:37:51      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:scheme   http   erp   rip   jquery   logs   script   相对路径   sep   

1.在jsp页面的上方加上这段java代码

<%
//        request.getContextPath() 返回当前页面所在的应用的名字;
//        request.getSchema() 返回当前页面使用的协议,如:http;
//        request.getServerName() 返回当前页面所在的服务器的名字;
//        request.getServerPort() 返回当前页面所在的服务器使用的端口 String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; %>

 2.在jsp页面的<head></head>下加上这段代码

<head>
    <base href="<%=basePath%>">
     <script src="js/jquery-1.9.1.js"></script>
</head> 

这样就可以了

jsp中获取页面的相对路径

标签:scheme   http   erp   rip   jquery   logs   script   相对路径   sep   

原文地址:http://www.cnblogs.com/2016-10-07/p/7345555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!