js獲取網站根路徑(站點及虛擬目錄),獲得網站的根目錄或虛擬目錄的根地址

weixin_34119545發表於2011-12-06
    //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;
       } 

 

http://blog.csdn.net/vbangle/article/details/5906632 

相關文章