您的位置:首页 > Web前端 > JavaScript

js 获取项目根目录

2013-09-27 14:34 441 查看
var base  =  {

   getRootPath : function() {

        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);

    }

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: