码迷,mamicode.com
首页 > Web开发 > 详细

js获取网站根目录

时间:2014-04-29 18:38:45      阅读:400      评论:0      收藏:0      [点我收藏+]

标签:class   java   javascript   ext   string   get   c   type   cti   t   window   

<script type="text/javascript">
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>

js获取网站根目录,码迷,mamicode.com

js获取网站根目录

标签:class   java   javascript   ext   string   get   c   type   cti   t   window   

原文地址:http://www.cnblogs.com/hyaaon/p/3697472.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!