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.

document.width

廃止
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

概要

現在の文書の <body> 要素の現在の幅のピクセル値を返します。

Internet Explorer ではサポートされていません。

Gecko 6.0 note
(Firefox 6.0 / Thunderbird 6.0 / SeaMonkey 2.3)

Gecko 6.0 より、document.width はサポートされなくなりました。代わりに document.body.clientWidth を使用します。 element.clientWidth を参照して下さい。

構文

pixels = document.width;

alert( "文書の幅は " + document.width + " ピクセルです。" );

代替策

document.body.clientWidth              /* <body> の幅 */
document.documentElement.clientWidth   /* <html> の幅 */
window.innerWidth                      /* window の内寸幅 */

仕様

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

関連情報

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

タグ: 
 このページの貢献者: fscholz, AshfaqHossain, ethertank
 最終更新者: AshfaqHossain,