📜  如何在html代码示例中打开一个新标签

📅  最后修改于: 2022-03-11 14:53:12.775000             🧑  作者: Mango

代码示例4
document.querySelector("#username").addEventListener('click', function() {
    setTimeout(function() {
        let username = document.querySelector('#username').value;
        window.open("https://www.github.com/" + username, "_blank");
    }, 2000);
}