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