1. ホーム
  2. javascript

[解決済み] 画面サイズ、現在のウェブページ、ブラウザウィンドウのサイズを取得する

2022-03-15 21:29:53

質問

どうすれば windowWidth , windowHeight , pageWidth , pageHeight , screenWidth , screenHeight , pageX , pageY , screenX , screenY 主要なブラウザーで動作するものを教えてください。

解決方法は?

jQueryでウィンドウやドキュメントのサイズを取得することができます。

// Size of browser viewport.
$(window).height();
$(window).width();

// Size of HTML document (same as pageHeight/pageWidth in screenshot).
$(document).height();
$(document).width();

画面サイズには screen オブジェクトを作成します。

window.screen.height;
window.screen.width;