獲取站點根目錄的方法

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

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