Javascript:window.open で画面中央に表示する

Pocket
このエントリーをはてなブックマークに追加

掲題の通りです。

Javascriptで、ポップアップで別ウィンドウを表示する際に、画面中央に表示する方法です。

例えば、800×600のサイズのウィンドウを表示する場合。

// 表示するウィンドウのサイズ

var w_size=800;

var h_size=600;

// 表示するウィンドウの位置

var l_position=Number((window.screen.width-w_size)/2);

var t_position=Number((window.screen.height-h_size)/2);

window.open(‘test.html’, ‘test’, ‘width=’+w_size+’, height=’+h_size+’, left=’+l_position+’, top=’+t_position);

てな感じです。

でわ。

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です