首页 > 代码库 > jsp中获取页面的相对路径
jsp中获取页面的相对路径
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="http://www.mamicode.com/"> <script src="http://www.mamicode.com/js/jquery-1.9.1.js"></script> </head>
这样就可以了
jsp中获取页面的相对路径
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。