你的位置:网站首页 >> 网站技术 >> 文章内容

js获取当前网站的目录

[日期:2022-12-26]   来源:云南龙头科技有限公司  作者:云南龙头科技有限公司   阅读:1072次

//js获取网站根路径(站点及虚拟目录),获得网站的根目录或虚拟目录的根地址

    function getRootPath(){

//整个域名(如:http://vc3.cn/index.php/Home/Index/store)

    var strFullPath=window.document.location.href;    

//后段部分(如:index.php/Home/Index/store)

    var strPath=window.document.location.pathname;

//获取位置

    var pos=strFullPath.indexOf(strPath);

//获取域名(如:http://vc3.cn)

    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;

       } 

本文网址:http://www.ynlongtou.com/m/show.asp?id=1996