HTML / DOM:什么是与document.body.scrollHeight等效的标准?

前端之家收集整理的这篇文章主要介绍了HTML / DOM:什么是与document.body.scrollHeight等效的标准?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

近十年来我一直在使用:

document.body.scrollHeight 

返回浏览器窗口的“理想”高度.当我通过使用quirks-mode doctype强制Internet Explorer进入怪癖模式时,这很好用:

现在我想选择标准模式,除了the meaning of scrollHeight has changed

> Quirks模式:document.body.scrollHeight =文档的高度
>标准模式:document.body.scrollHeight =< body>的高度元件

什么是标准模式等效于document.body.scrollHeight?

也可以看看

> quirksmode.org:W3C DOM Compatibility – CSS Object Model View – ElementView properties
> Using !DOCTYPE invalidates client height

最佳答案
document.documentElement.scrollHeight我相信.

对于视口,它是适用于现代浏览器的window.innerHeight.

如果以上不是你想要的,这里有一堆列表:

> document.documentElement.[scrollHeight,clientHeight,offsetHeight]
> document.body.[scrollHeight,offsetHeight]
>窗口.[内部,外部] [高度,宽度](仅限现代浏览器)

原文链接:https://www.f2er.com/html/425724.html

猜你在找的HTML相关文章