当我使用jquery count body's height时,绝对位置元素的高度不会被包括在内?

发布于 2024-10-08 20:47:10 字数 496 浏览 3 评论 0原文

大家好,我是一个html新手,我有一个关于css位置的问题:

首先这是我的演示html代码

<div id="test-header"></div>
<div id="test-content"></div>
<input type="button" value="body">

我设置了“test-content”position:absolute,“test-header” " 默认情况下,

但是当我使用 $("body").height() 获取 body 的高度时,它只提醒“test-header”的高度……

那么为什么 count 不包括 abasolute 元素的高度呢?

我该如何解决这个问题?

这是我的在线案例

Hello all,I'm a junior on html,I have a question about css position :

first here is my demo html code

<div id="test-header"></div>
<div id="test-content"></div>
<input type="button" value="body">

I set the "test-content" position: absolute,the "test-header" in default

but when I use $("body").height() to get the body's height,it only alert the "test-header"'s height ……

So why count would not include the abasolute element's height?

How can I solve this problem ?

here is my online case

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

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

发布评论

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

评论(1

丶视觉 2024-10-15 20:47:10

这是正确的结果,当您绝对定位一个元素时,它会从 document 的流程中取出,并且不会占用其父级内部的任何空间......这就是为什么 < body> 不考虑它所占用的大小。

This is the correct result, when you absolutely position an element it's taken out of the flow of the document, and doesn't occupy any space inside it's parent...which is why <body> doesn't account for the size it takes up.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文