如何在选中(始终在新选项卡中打开弹出窗口)时强制弹出窗口在新窗口中打开?
目前,在 IE8 和 IE7 下,使用 javascript window.open 并将目标参数设置为 _blank,并且选中(始终在新选项卡中打开弹出窗口)时,弹出窗口将在新选项卡中打开。
有没有办法强制新的弹出窗口从 javascript 在新窗口中打开? 除了javascript之外还有其他解决方案吗?
谢谢
Currently, under IE8 and in IE7, using javascript window.open and target param is set to _blank, and while (Always open pop-ups in new tab) is checked, the pop up will open in new tab.
Is there a way to force the new pop up to open in a new window from javascript?
Is there a solution other than javascript?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有。这是一个用户设置,您无法从页面上的脚本覆盖它。这是设计使然。
如果您确实需要对话框类型的体验,则可以尝试使用 HTML 对话框。
Nope. It's a user setting that you can't override from script on the page. This is by design.
You could try using an HTML dialog instead if you truly need a dialog type experience.