通过 window.open 重新加载选项卡后聚焦选项卡?
在我的网络应用程序中,我使用通过 window.open 打开的新选项卡。有时,具有目标名称的选项卡已在后台打开,而 window.open(..., "sametarget") 仅重新加载它,这很好 - 但选项卡在重新加载后仍保留在后台,这不是。有什么办法(JavaScript?window.open参数?)让它在重新加载后到达前台吗?或者浏览器安全禁止这样做? 我正在 IE7 / IE8 中尝试这个。
In my webapp I work with new Tabs I open with window.open. Sometimes, a tab with the target-name is already open in the background and the window.open(..., "sametarget") only reloads it, which is fine - but the Tab stays in the background after reloading, which is not. Is there any way (JavaScript? window.open parameter?) to get it to the foreground after reloading? Or is this prohibited by browser security?
I am trying this in IE7 / IE8.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
window.focus()
能解决您的问题吗?编辑
可能不是:可以设置JavaScript 中 IE7 中的选项卡焦点
Does
window.focus()
solve your problem?EDIT
Possibly not: Possible to set tab focus in IE7 from JavaScript