js获取当前项目的ip和端口
//js 获取项目的 ip 和端口号
var curPath = window.document.location.href;
var pathname = window.document.location.pathname;
var pos = curPath.indexOf(pathname);
var localhostPath = curPath.substring( 0, pos );
console.log( localhostPath );