js获取网站根目录

时间:2014-04-29 18:38:45   收藏:0   阅读:400
<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

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!