次のようにjavascriptを使用してWebページの合計の高さを取得しようとしています
var pageHeight = (document.height !== undefined) ? document.height : document.body.offsetHeight;
他のブラウザでは問題なく動作しますが、Internet Explorer は値「0」を返します。なぜ?
次のようにjavascriptを使用してWebページの合計の高さを取得しようとしています
var pageHeight = (document.height !== undefined) ? document.height : document.body.offsetHeight;
他のブラウザでは問題なく動作しますが、Internet Explorer は値「0」を返します。なぜ?