gpt4 book ai didi

javascript - 我无法用纯 JavaScript 获得元素的准确高度

转载 作者:行者123 更新时间:2023-12-02 23:46:40 25 4
gpt4 key购买 nike

我使用以下函数来获取元素的完整高度:

outerHeight1=(el)=> {
let style = window.getComputedStyle(el);

return (parseInt(style.getPropertyValue("height").replace("px",""))+
parseInt(style.getPropertyValue("border-bottom-width").replace("px",""), 10)+
parseInt(style.getPropertyValue("border-top-width").replace("px",""), 10)
);
}

值得注意的是,元素是动态添加到 dom 中的。我看到的是我在 chrome 中检查的渲染高度比我的函数返回的高度大约高 3 px,因此渲染的 dom 返回 55,但我的函数返回 52。

有什么想法吗?

更新:

按照建议,我使用了 getBoundingClientRect,高度为 0。这是我的控制台中的日志

enter image description here

最佳答案

您可以使用element.getBoundingClientRect(),它应返回一个对象,其键之一是heightYou can read the docs here

关于javascript - 我无法用纯 JavaScript 获得元素的准确高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55830877/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com