使用 JavaScript 定义元素高度时出现问题
我试图在网站上运行以下代码来设置网页中元素的高度:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试在计算值的末尾附加“px”。
try to append 'px' at the end of the computed value.
#body
元素是否具有style
属性?如果没有,则可能没有设置任何内容,jQuery 不需要存在样式即可使用
css
函数更改它Does the
#body
element have astyle
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