// 自动获取端口+ip
var curWwwPath=window.document.location.href;
var pathName=window.document.location.pathname;
var pos=curWwwPath.indexOf(pathName);
var localhostPaht=curWwwPath.substring(0, pos);//当前页面ip+端口
console.log(localhostPaht);
自动获取ip
// var protocol = window.location.protocol;
// var hostname = window.location.hostname;
// var baseUrl = protocol + '//' + hostname + ':8081';