サイトマップ

JavaScriptコードスニペット:ウインドウのサイズを取得する

ブラウザによる違いを吸収し、width, height値を含むオブジェクトを返します。ここで得られる値はスクロールバーの大きさも含まれたサイズとなります。

【サンプル】

(function() {
    if (window.innerWidth)
        return { width : window.innerWidth, height : window.innerHeight };
    else if (document.documentElement)
        return { width : document.documentElement.clientWidth, height : document.documentElement.clientHeight };
    else
        return { width : document.body.clientWidth, height : document.body.clientHeight };
})();

【サンプルの実行】クリックしてください

JavaScriptコードスニペット

 
research/1308639202.txt · 最終更新: 2011/07/08 18:01 by Kazuyuki Matsuda
特に明示されていない限り、本サイトの内容は次のライセンスに従います:Copyright(C) 2011 Shorindo, Inc. All Rights Reserved
Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki