廃止
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。どの標準にも属しません。