js 獲取 項目 根路徑 JavaScript

 
/**
 * 獲取項目根路徑1
 * @return {RootPath}
 * @author 李海雲
 */
function getRootPath1(){
	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);
}
/**
 * 獲取項目根路徑2
 * @return {RootPath}
 * @author 李海雲
 */
function getRootPath2() 
{ 
	 var pathName = window.location.pathname.substring(1);
	 var webName = pathName == '' ? '' : pathName.substring(0, pathName.indexOf('/'));
	 return window.location.protocol + '//' + window.location.host + '/'+ webName + '/'; 
} 

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