新页面在新窗口中打开,而不是 Firefox 中的新选项卡
我有一个由带有两个框架的框架集组成的网站。其中一个框架会打开一个新文档...
var myWin= open("","ImgWindow","status=yes,toolbar=yes,menubar=yes,scrollbars=yes");
myWin.document.open();
我的 Mozilla Firefox 3.0.19 配置为在选项卡中打开新页面,而不是在窗口中。
Firefox 在新窗口而不是选项卡中打开文档。 IE 和 Opera 在新选项卡中打开文档。
我可以做些什么来使文档在 Firefox 的新选项卡中打开吗?
I have a site consisting of a frameset with two frames. One of the frames opens a new document ala...
var myWin= open("","ImgWindow","status=yes,toolbar=yes,menubar=yes,scrollbars=yes");
myWin.document.open();
My Mozilla Firefox 3.0.19 is configured to open new pages in tabs, not windows.
Firefox opens the document in a new Window, not a tab. IE and Opera open the document in a new tab.
Is there something I can do to cause the document to open in a new tab in Firefox?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此页面可能对您有帮助。
在默认设置下,如果您调用 window.open() 时不带第三个参数,则 Firefox 将在新选项卡中打开窗口,否则将在新窗口中打开窗口。
This page might help you.
With default settings, if you invoke window.open() without the third parameter, firefox will open the window in a new tab, otherwise in a new window.