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

JS 中获得根目录

时间:2014-08-04 21:17:07      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   cti   div   

/***
 * 获得根目录
 * @returns
 */
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);
}

 

JS 中获得根目录,布布扣,bubuko.com

JS 中获得根目录

标签:style   blog   color   os   io   ar   cti   div   

原文地址:http://www.cnblogs.com/sandyflower/p/3890846.html

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