首页 > 代码库 > js例子记载
js例子记载
1.获取项目路径的,不一定有用,仅作参考用:
1 function getRootPath() { 2 var curWwwPath = window.document.location.href; //"http://localhost:8080/springMVC/jsonTest.jsp" 3 var pathName = window.document.location.pathname; // /springMVC/jsonTest.jsp 4 var pos = curWwwPath.indexOf(pathName); // 21 5 var localhostPath = curWwwPath.substring(0, pos); //http://localhost:8080 6 var projectName = pathName.substring(0, pathName.substr(1).indexOf(‘/‘) + 1); // /springMVC 7 8 return (localhostPath + projectName); //http://localhost:8080/springMVC 9 }
js例子记载
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。