使用javascript在Internet Explorer 8上的Tab中打开新页面

时间:2013-04-23 15:13:43

标签: javascript jquery html internet-explorer

使用以下

window.open('aPage.aspx');

我可以在每个浏览器的新标签页中打开页面,但Internet Explorer 8除外。

我在这篇文章中看到了 How to open webpages in a new tab in internet explorer? 我可以使用标签'a'的'target'属性来做到这一点。

我需要在另一个页面加载时出现此行为。所以我没有点击链接/按钮,Tab上的页面会自动打开,我需要使用javascript。

任何有关此工作的提示?

2 个答案:

答案 0 :(得分:0)

你可以使用window.load或jquery $(window).load(function(){}); 并将您的代码放在函数中。你可以使用window.open(url,'_ blank');如你所说

答案 1 :(得分:0)

作为您发布的示例的答案建议,您无法更改浏览器的设置。您所能做的就是将target="_blank"添加到链接,将window.open(url,'_blank');添加到javascript打开。这将告诉浏览器在新窗口中打开,但浏览器将遵循用户的首选项设置以在新选项卡或窗口中打开。