function getRootPath(){ //獲取當前網址,如: http://localhost:8088/test/test.jsp var curPath=window.document.location.href; //獲取主機地址之后的目錄,如: test/test.jsp var pathName=window.document.location.pathname; var pos=curPath.indexOf(pathName); //獲取主機地址,如: http://localhost:8088 var localhostPaht=curPath.substring(0,pos); //獲取帶"/"的項目名,如:/test var projectName=pathName.substring(0,pathName.substr(1).indexOf('/')+1); return(localhostPaht+projectName); }
