スクリーン(モニター)の解像度を取得
スクリーン(モニター)の解像度を取得するには、横幅はscreen.width
プロパティ、高さはscreen.height
プロパティを使用します。
構文
横幅
var screenWidth = screen.width;
高さ
var screenHeight = screen.height;
戻り値:screen.width
スクリーン(モニター)の横幅の値を返します。
戻り値:screen.height
スクリーン(モニター)の縦幅(高さ)の値を返します。
サンプルコード
JavaScript
var screenWidth = screen.width,
screenHeight = screen.height;
alert(screenWidth + 'x' + screenHeight + 'px');