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.height

廃止
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> 要素の現在の高さのピクセル値を返します。

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

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

構文

pixels = document.height;

alert(document.height);

代替策

document.body.clientHeight             /* <body> 要素の高さ */
document.documentElement.clientHeight  /* <html> 要素の高さ */
window.innerHeight                     /* window の内寸 の高さ*/

仕様

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

関連情報

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

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