function getRootPath() {
//http://10.10.20.159:90/pingtai/
var strFullPath = window.document.location.href;
var strPath = window.document.location.pathname;
var pos = strFullPath.indexOf(strPath);
var prePath = strFullPath.substring(0, pos);
var postPath = strPath.substring(0, strPath.substr(1).indexOf('/') + 1);
return (prePath + postPath + "/");
}
相关文章
- 03-24jquery-3.5.1 js获取当前服务器所在路径
- 03-24[WinAPI] API 12 [获取程序所在的目录、程序模块路径,获取和设置当前目录]
- 03-24winform 获取当前项目所在的路径
- 03-24C++获取当前执行程序文件所在的全路径
- 03-24js 获取当前日期所在周的周一
- 03-24批处理文件中获取当前所在路径的几种方法,以及写文件到txt
- 03-24JS获取当前文件所在的文件夹全路径
- 03-24js 获取当前焦点所在的元素、给元素和input控件添加键盘监听事件、添加页面级的键盘监听事件
- 03-24js获取当前项目根路径URL (转自CSDN 红领巾-sunlight)
- 03-24(转载)C#获取当前应用程序所在路径及环境变量