--- title: Document.width slug: Web/API/Document/width tags: - API - Document - HTML DOM - Obsolete - Reference - width - プロパティ translation_of: Web/API/Document/width ---
{{APIRef("DOM")}} {{Obsolete_header}}

メモ: {{Gecko("6.0")}} より document.width には対応しなくなりました。代わりに document.body.clientWidth を使用してください。 {{domxref("element.clientWidth")}} を参照して下さい。

現在の文書の {{HTMLElement("body")}} 要素の現在の幅をピクセル値で返します。

Internet Explorer では対応していません。

構文

pixels = document.width;

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

代替策

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

仕様書

HTML5

ブラウザーの対応

{{Compat("api.Document.width")}}

関連情報