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

    //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;
       } 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章