JS资料中获取contextPath的方法

JS文件中获取contextPath的方法

function getContextPath() {
    var pathName = document.location.pathname;
    var index = pathName.substr(1).indexOf("/");
    var result = pathName.substr(0,index+1);
    return result;
}

 

如果一个服务器部署多个项目就不可以

你可能感兴趣的:(js)