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

posted @ 2020-09-09 13:50  就一个  阅读(4358)  评论(0编辑  收藏  举报