//js获取网站根路径(站点及虚拟目录),获得网站的根目录或虚拟目录的根地址
function getRootPath(){
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);
}
*/
//js获取网站根路径(站点及虚拟目录),获得网站的根目录或虚拟目录的根地址
function getRootPath() {
var pathName = window.location.pathname.substring(1);
var webName = pathName == '' ? '' : pathName.substring(0, pathName.indexOf('/'));
//return window.location.protocol + '//' + window.location.host + '/'+ webName + '/';
return window.location.protocol + '//' + window.location.host + '/'+ webName;
}
js获取网站根路径(站点及虚拟目录),获得网站的根目录或虚拟目录的根地址
最新推荐文章于 2022-05-18 18:32:56 发布
本文介绍了两种使用JavaScript来获取网站根路径的方法。第一种方法通过分析当前页面的URL来确定根路径;第二种方法则直接利用location对象来构造根路径。
274

被折叠的 条评论
为什么被折叠?



