function getRootPath(){
//获取当前网址,如: http://localhost:8088/test/test.jsp
var curPath=window.document.location.href;
//获取主机地址之后的目录,如: test/test.jsp
var pathName=window.document.location.pathname;
var pos=curPath.indexOf(pathName);
//获取主机地址,如: http://localhost:8088
var localhostPaht=curPath.substring(0,pos);
//获取带"/"的项目名,如:/test
var projectName=pathName.substring(0,pathName.substr(1).indexOf('/')+1);
return(localhostPaht+projectName);
}
相关文章
- 11-01CodeGo.net>如何在sitecore中获取媒体项目的详细信息?
- 11-01获取应用程序根目录物理路径(Web and Windows)
- 11-01js 获取表单数据
- 11-01js 使用微信公众号jssdk的接口,扫码,选择图片,获取位置信息
- 11-01easyui中设置开始日期只能选择比结束日期小的日期,js代码获取日期的值
- 11-01jQuery、JS和jQuery Easyui三种不同获取值的方法
- 11-01项目四:数据获取:合并excel
- 11-01SpringBoot项目获取ApplicationContext来GetBean的方法
- 11-01dotnet Roslyn 通过读取 suo 文件获取解决方案的启动项目
- 11-01JS获取URL中参数值的4种方法