//다음과 같은 현재 URL을 가져옵니다. : http:// localhost:8080/Tmall/index.jsp
var curWwwPath=window.document.location.href;
//호스트 주소를 얻은 후의 디렉터리는 /Tmall/index입니다. jsp
var pathName =window.document.location.pathname;
var pos=curWwwPath.indexOf(pathName);
//http://localhost와 같은 호스트 주소를 가져옵니다. 8080
var localhostPaht=curWwwPath .substring(0,pos);
//다음과 같이 "/"를 사용하여 프로젝트 이름을 가져옵니다. 예: /Tmall
var projectName=pathName.substring(0, pathName.substr(1).indexOf( '/') 1)