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.
我想从另一个选项卡中选择一个浏览器选项卡。例如,我的一个 Web 应用程序在浏览器中打开,而我在另一个选项卡中打开了一个链接。现在我想使用“CTRL+M”之类的快捷键选择我的第一个选项卡。
我怎样才能做到这一点?
您无法以编程方式选择 HTML 结构之外的任何内容。您唯一的选择是关闭当前选项卡,以便它可以跳回最后一个选项卡:
window.close();
甚至这种方法也是基于一些假设并且不可靠。不要那样做;)
据我所知,这仅适用于其中一个选项卡是另一个选项卡的弹出窗口。然后你可以使用
window.opener.focus();
聚焦打开弹出窗口的选项卡和
popupName.focus();
聚焦弹出窗口