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

js获取项目根目录的方法

时间:2014-11-30 19:58:18      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   on   

getRootPath = function(){
    //获取当前网址,如: http://localhost:8080/ems/Pages/Basic/Person.jsp
    var curWwwPath = window.document.location.href;
    //获取主机地址之后的目录,如: /ems/Pages/Basic/Person.jsp
    var pathName = window.document.location.pathname;
    var pos = curWwwPath.indexOf(pathName);
    //获取主机地址,如: http://localhost:8080
    var localhostPath = curWwwPath.substring(0, pos);
    //获取带"/"的项目名,如:/ems
    var projectName = pathName.substring(0, pathName.substr(1).indexOf(‘/‘) + 1);
    return localhostPath;
};

 

js获取项目根目录的方法

标签:style   blog   http   io   ar   color   os   sp   on   

原文地址:http://www.cnblogs.com/shisanmu/p/4133535.html

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