前端工作总结
var basePath = "<%=basePath%>";
//获取主机地址之后的目录,如: uimcardprj/share/meun.jsp
var pathName = window.document.location.pathname;
var pos = curWwwPath.indexOf(pathName);
//获取主机地址,如: http://localhost:8083
var localhostPaht = curWwwPath.substring(0, pos);
//获取带"/"的项目名,如:/uimcardprj
var projectName = pathName.substring(0, pathName.substr(1).indexOf('/') + 1);
var pathName = window.document.location.pathname;
var domain = document.location.origin+pathName.substring(0, pathName.substr(1).indexOf('/') + 1);
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
%>
<%=request.getContextPath()%>

浙公网安备 33010602011771号