首页 > Web开发 > 详细

JS 中获得根目录

时间:2014-08-04 21:17:07      阅读:359      评论:0      收藏:0      [点我收藏+]
/***
 * 获得根目录
 * @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 中获得根目录

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!