JavaScript实现在新窗口跳转到不同端口号

2021-01-28  本文已影响0人  wxyzcctn

HTMl:

<div id="button">按钮</div>

JavaScript:

var button = document.getElementById("button");
button.addEventListener('click', function(){
    let p = window.location.protocol;
    let hostname = window.location.hostname;
    let a = document.createElement("a");
    a.setAttribute("href", `${p}//${hostname}:8081`);
    a.setAttribute("target", "_blank");
    a.click();
    document.getElementsByTagName("body")[0].appendChild(a);
}, false)
上一篇下一篇

猜你喜欢

热点阅读