// 取得目前網址,如: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);