gpt4 book ai didi

javascript - 使用 javascript setTimeout 函数在新选项卡中打开新 url

转载 作者:行者123 更新时间:2023-11-29 21:26:18 26 4
gpt4 key购买 nike

一段时间后,我试图在新标签页中打开一个 URL。

<script type="text/JavaScript">
setTimeout("location.href = 'http://google.com/';",3000);
</script>

以上代码在同一个标​​签页中打开 url。
但我想在新标签页或新窗口中打开 url。

最佳答案

您可以使用 window.open()

setTimeout(function() {
window.open("/path/to/resource/")
}, 3000)

plnkr http://plnkr.co/edit/H7P2C59HE6tzhu4mlnlZ?p=preview

关于javascript - 使用 javascript setTimeout 函数在新选项卡中打开新 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37348689/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com