http://localhost:8080/xhs/html/error_type_manger.htmlhtml
getRoot: function () { var curWwwPath = window.document.location.href; //整个url地址 http://localhost:8080/xhs/html/error_type_manger.html var pathName = window.document.location.pathname; // 文件路径名 /xhs/html/error_type_manger.html var pos = curWwwPath.indexOf(pathName); //路径名开始的索引值 var localhostPath = curWwwPath.substring(0, pos);// 得到主机名地址 http://localhost:8080 var projectName = pathName.substring(0, pathName.substr(1).indexOf('/') + 1); // 得到工程目录文件 /xhs return (localhostPath + projectName); }