js获取网站路径(站点与虚拟目录)的代码

发布时间:2020-01-23编辑:脚本学堂
js获取网站路径(站点与虚拟目录)的代码,走过路过的朋友,可不能错过哦。

js获取网站路径(站点与虚拟目录)。
 

复制代码 代码如下:
<script language="javascript">
/**
  获取网站路径 站点路径与虚拟目录路径
  link:www.jb200.com
  date:2013/2/28
*/
function getRootPath(){
var strFullPath=window.document.location.href;
var strPath=window.document.location.pathname;
var pos=strFullPath.indexOf(strPath);
var prePath=strFullPath.substring(0,pos);
var postPath=strPath.substring(0,strPath.substr(1).indexOf('/')+1);
return(prePath+postPath);
}
alert (getRootPath());
</script>