📜  html 在新选项卡中以纯文本形式打开 html - Html 代码示例

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

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