我正在尝试在Google Chrome 版本 62.0.3202.94的后台打开新窗口。我通过在记事本中键入并复制粘贴到F12开发人员控制台来运行代码。
这是我迄今为止尝试过的代码,改编自各种 Google 搜索结果:
var url = "https://stackoverflow.com/";
function test1(){
var w = window.open(url);
w.blur();
window.focus();
}
function test2(){
window.open(url);
window.open().close();
}
function test3(){
window.open(url, "s", "width= 640, height= 480, left=0, top=0, resizable=yes, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no").blur();
window.focus();
}
然后我输入test1()
andtest2()
并按test3()
Enter 没有达到我想要的效果:新页面刚刚打开并获得焦点。
我有机会这样做吗?
请注意对浏览器和版本的强调。