您好我想使用javascript在新标签页中打开窗口而不更改浏览器设置
下面是我写的代码片段。为此我需要将IE设置更改为“Internet Explorer决定弹出窗口应该如何打开”
function open_in_new_tab(url)
{
window.open(url,'_blank');
}
答案 0 :(得分:2)
我认为在不更改浏览器设置的情况下,无法在新选项卡中打开窗口而不是新窗口。
答案 1 :(得分:0)
function open_in_new_tab(url )
{
var win=window.open(url, '_blank');
win.focus();
}
Open a URL in a new tab (and not a new window) using JavaScript