开发者

New page opens in new window, not new tab in Firefox

开发者 https://www.devze.com 2023-01-14 23:13 出处:网络
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\");

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.

Fire开发者_如何学Pythonfox 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?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消