複数のサブウインドウを開く方法(2022/05/20)

過去の記事「サイズが異なるサブウインドウを開き直す方法」は、前に開いたサブウインドウを閉じてから次のを開くことで表示サイズの違いに対応させるというものだが、サブウインドウを閉じずに別のを開く方法についても書きとめておく。

javascript

HTML コードは以下のとおり。 <a href="../details/window_a.html" onclick="window.open('../details/window_a.html', 'subwindow', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=300, height=300, left=0, top=0'); return false; ">Window A</a> <a href="../details/window_b.html" onclick="window.open('../details/window_b.html', 'subwindow2', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=200, height=200, left=50, top=50'); return false; ">Window B</a> ウインドウ名を "subwindow"、"subwindow2" のように別々にすること。

< 前の記事次の記事 >