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

在javascript中获得网站根路径的方法在javascript中获得网站根路径的方法function getRootPath() {var pat

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