<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
request.getScheme();//可以返回当前页面使用的协议,就是“http”
request.getServerName();//可以返回当前页面所在的服务器的名字,其实就是一般的localhost,如果是真的部署在服务器上那就是服务器的地址
request.getServerPort;//返回的是当前页面所在的服务器使用的端口,一般情况下是80端口,(自己的机器测试的话就是8080)
request.getContextPath;//返回当前页面所在的应用程序的路径,
这四个拼装起来,就是当前应用的跟路径了。
<a href="<%=basePath %>/luck/initLuck" target="blank" style="height:56px"><img src="<c:url value=‘/images/sign_action/actionButton.png‘/>" width="161px" height="56px">
时间: 2024-10-10 17:27:32