//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 );

相关文章: