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

发布于 2024-09-25 06:30:07 字数 1071 浏览 7 评论 0原文

近十年来,我一直在使用:

document.body.scrollHeight 

返回浏览器窗口的“理想”高度。当我通过使用怪异模式文档类型强制 Internet Explorer 进入怪异模式时,效果很好:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

现在我想选择 >标准模式scrollHeight 的含义已更改

  • 怪异模式document.body.scrollHeight = 高度文档的
  • 标准模式document.body.scrollHeight = 元素的高度

相当于 < 的标准模式是什么代码> document.body.scrollHeight ?

另请参阅

For nearly a decade i've been using:

document.body.scrollHeight 

to return the "ideal" height of the browser window. This worked fine when i was forcing Internet Explorer into quirks mode, by using a quirks-mode doctype:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

Now i want to opt into standards mode, except the meaning of scrollHeight has changed:

  • Quirks Mode: document.body.scrollHeight = the height of the document
  • Standards Mode: document.body.scrollHeight = the height of the <body> element

What is the standards mode equivalent of document.body.scrollHeight?

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小帐篷 2024-10-02 06:30:07

document.documentElement.scrollHeight 我相信。

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

如果上面的内容不是您想要的,这里是其中一堆的列表:

  • document.documentElement.[scrollHeight,clientHeight,offsetHeight]
  • document.body.[scrollHeight,clientHeight,offsetHeight]
  • window.[inner,outer][Height ,宽度](仅限现代浏览器)

document.documentElement.scrollHeight I believe.

For viewport it's window.innerHeight for modern browsers.

If the above aren't what you want, here's a list of a bunch of them:

  • document.documentElement.[scrollHeight,clientHeight,offsetHeight]
  • document.body.[scrollHeight,clientHeight,offsetHeight]
  • window.[inner,outer][Height,Width] ( modern browsers only )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文