笑话大全网 - 笑话段子大全 - 如何用js获取网站的根路径?

如何用js获取网站的根路径?

Js获取项目的根路径:

//js获取项目的根路径,比如:http://localhost:8083/uimcardprj。

函数getRootPath(){

//获取当前网址,比如http://localhost:8083/uicardprj/share/meun . JSP。

var curWwwPath = window . document . location . href;

//获取主机地址后的目录,比如uicardprj/share/meun.jsp。

var pathName = window . document . location . pathName;

var pos=curWwwPath.indexOf(路径名);

//获取主机地址,比如http://localhost:8083。

var localhostPaht = curwwwpath . substring(0,pos);

//获取带“/”的项目名称,如:/uicardprj。

var project name = pathname . substring(0,pathName.substr(1))。index of('/')+1);

return(localhostPaht+project name);

}