当前位置: 代码迷 >> JavaScript >> 在javascript中取得网站根路径的方法
  详细解决方案

在javascript中取得网站根路径的方法

热度:389   发布时间:2012-10-30 16:13:36.0
在javascript中获得网站根路径的方法
在javascript中获得网站根路径的方法
        function getRootPath() {
            var pathName = window.location.pathname.substring(1);
            var webName = pathName == '' ? '' : pathName.substring(0, pathName.indexOf('/'));
               return window.location.protocol + '//' + window.location.host + '/'+ webName;
        }  
  相关解决方案