JavaScript:location.href在新窗口/选项卡中打开?

我有来自第三方开发人员的JavaScript文件。它具有一个具有链接的链接,该链接将当前页面替换为目标页面。我想在新标签页中打开此页面。

这是我到目前为止所拥有的:

if (command == 'lightbox') {

location.href" title="location.href">location.href="https://support.wwf.org.uk/earth_hour/index.php?type=individual";

}

谁能帮我吗?

回答:

window.open(

'https://support.wwf.org.uk/earth_hour/index.php?type=individual',

'_blank' // <- This is what makes it open in a new window.

);

以上是 JavaScript:location.href在新窗口/选项卡中打开? 的全部内容, 来源链接: utcz.com/qa/428263.html

回到顶部