我正在尝试使用 javascript 获取网页的总高度,如下所示
var pageHeight = (document.height !== undefined) ? document.height : document.body.offsetHeight;
在其他浏览器中对我来说工作正常,但 Internet Explorer 为它返回一个值“0”。为什么?
我正在尝试使用 javascript 获取网页的总高度,如下所示
var pageHeight = (document.height !== undefined) ? document.height : document.body.offsetHeight;
在其他浏览器中对我来说工作正常,但 Internet Explorer 为它返回一个值“0”。为什么?