Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

window.screen.width

概要

画面の幅を返します。

構文

lWidth = window.screen.width

// 画面が 1024x768 であるかを調べるおおざっぱな方法
if (window.screen.width > 1000) {
    // 解像度は、10 x 7 以下。
}

注記

このプロパティで取得した幅の全てがウィンドウそれ自身で利用できないかもしれないことに注意してください。他のウィジットが window オブジェクトで使用することができない空間を占有するとき、window.screen.widthwindow.screen.availWidth の間に差が生じます。window.screen.height も参照してください。

仕様

DOM Level 0。どの標準にも属しません。

ドキュメントのタグと貢献者

 このページの貢献者: fscholz, khalid32, ethertank, Potappo
 最終更新者: khalid32,