在新标签页中打开,但未与父标签页分组

时间:2019-02-11 15:18:27

标签: javascript html internet-explorer-11

我在使用Internet Explorer 11和链接时遇到问题。 所以我有一个带有链接的网页,这是代码,经典链接:

<a href="http://www.google.com" target="_blank">My Link</a>

因此,我希望此链接在新标签页中打开,它可以与_blank标签一起使用。但是在IE11中,我单击后,新选项卡与旧选项卡分组了,我不想这么做。

ie11

是否可以通过某些JS或其他方式强制IE11不将选项卡与旧选项卡分组?我也尝试过target="_new",但还是没用。

1 个答案:

答案 0 :(得分:1)

您可以尝试使用window.open方法打开一个新标签页。

代码如下:

<script type="text/javascript">
    function openInNewTab(url) {
        event.preventDefault();
        var win = window.open(url, '_blank');
    }
</script>
<a href="#" onclick="openInNewTab('http://www.google.com');">My Link</a>

结果如下:

enter image description here