使用 JavaScript 定义元素高度时出现问题

发布于 2024-10-02 00:59:06 字数 435 浏览 4 评论 0原文

我试图在网站上运行以下代码来设置网页中元素的高度:

document.querySelector("#body").style.height = window.innerHeight - document.querySelector("#footer").offsetHeight;

它是函数的一部分,该函数的所有其他部分似乎都工作正常,但此部分不起作用。

然而,用 jQuery 编写的类似命令确实有效:

$("#body").css({ "height" : window.innerHeight - document.querySelector("#footer").offsetHeight });

但我不想为像这样小的东西调用 jQuery 库。

关于我做错了什么有什么建议吗?

I'm trying to run the following code on a website to set up the height of elements in a webpage:

document.querySelector("#body").style.height = window.innerHeight - document.querySelector("#footer").offsetHeight;

It's part of a function, and all the other parts of the function appear to be working properly, but this section does not work.

A similar command however, written with jQuery, does work:

$("#body").css({ "height" : window.innerHeight - document.querySelector("#footer").offsetHeight });

But I'd rather not have to call on the jQuery library for something as small as this.

Any suggestions as for what I'm doing wrong?

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

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

发布评论

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

评论(2

柠北森屋 2024-10-09 00:59:06

尝试在计算值的末尾附加“px”。

(window.innerHeight - document.querySelector("#footer").offsetHeight) + 'px'

try to append 'px' at the end of the computed value.

(window.innerHeight - document.querySelector("#footer").offsetHeight) + 'px'
撞了怀 2024-10-09 00:59:06

#body 元素是否具有 style 属性?
如果没有,则可能没有设置任何内容,jQuery 不需要存在样式即可使用 css 函数更改它

Does the #body element have a style attribute?
If it does not it may be that nothing is set, jQuery does not need the style to be present to change it using the css function

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