在下面使用这个
window.open('aPage.aspx');
我可以使用每个浏览器在新选项卡中打开页面,除了 Internet Explorer 8。
我在这篇文章中看到 如何在 Internet Explorer 的新选项卡中打开网页? 我可以用标签'a'的'target'属性来做到这一点。
当另一个页面加载时,我需要有这种行为。所以我不点击链接/按钮,选项卡上的页面会自动打开,我需要使用 javascript。
有什么提示可以完成这项工作吗?
在下面使用这个
window.open('aPage.aspx');
我可以使用每个浏览器在新选项卡中打开页面,除了 Internet Explorer 8。
我在这篇文章中看到 如何在 Internet Explorer 的新选项卡中打开网页? 我可以用标签'a'的'target'属性来做到这一点。
当另一个页面加载时,我需要有这种行为。所以我不点击链接/按钮,选项卡上的页面会自动打开,我需要使用 javascript。
有什么提示可以完成这项工作吗?
As the answers to the example you posted suggest, you cannot change the settings of the browser. All you can do is add target="_blank"
to links and window.open(url,'_blank');
to the javascript open. This will tell the browser to open in a new window but the browser will honor the user's preference setting to open in a new tab or window.
您可以使用 window.load 或 jquery $(window).load(function () {}); 并将您的代码放入函数中。您可以使用 window.open(url,'_blank'); 正如你提到的