$(document).ready(function(){
//获取当前网址,如: http://localhost:8088/EasyUIDemo/FirstDemo01.jsp
var curPath=window.document.location.href;
//获取主机地址之后的目录,如: EasyUIDemo/FirstDemo01.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);
var path=localhostPaht+projectName;
load(path); //项目路径不能写死
});