Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在单击时打开一个新选项卡,但我希望上一个选项卡始终处于活动状态,子选项卡默认不活动
我的代码是-
<a onclick="window.open(URL); self.focus();>Click</a>
此行为取决于浏览器,无法由 Javascript 控制。
您可以编写新窗口的代码 onload 将焦点返回给开启者:
window.opener.focus();
注意 window.open 打开一个新窗口而不是一个新选项卡,target=_blank打开一个新选项卡(根据浏览器设置可选)
target=_blank