时间:2020-10-07 14:27:58 | 栏目:JavaScript代码 | 点击:次
一直用EL表达式${pageContext.request.contextPath}来传递应用名,在用到JS中时,很麻烦,虽然也可以用,但是加大了代码复杂度,因此这里推荐用JS获取应用名
function getContextPath() { var contextPath = document.location.pathname; var index =contextPath.substr(1).indexOf("/"); //这个地方可能有问题,要根据具体项目适当修改 contextPath = contextPath.substr(0,index+1); delete index; return contextPath; }