日期:2014-05-16  浏览次数:20317 次

在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;
        }