ウィンドウ外周の横幅と縦幅(高さ)を取得
ウィンドウの外周の横幅や縦幅(高さ)を取得するには、横幅はwindow.outerWidth
プロパティ、縦幅(高さ)はwindow.outerHeight
プロパティを使用します。
- ※ IE8以下は対応していません。
構文
横幅
var height = window.outerWidth;
高さ
var height = window.outerHeight;
戻り値:window.outerWidth
ウィンドウ外周の横幅の値を返します。
戻り値:window.outerHeight
ウィンドウ外周の高さの値を返します。
サンプルコード
JavaScript
var w = window.outerWidth,
h = window.outerHeight;
alert(w + 'x' + h + 'px');