gpt4 book ai didi

javascript - 如何将 Css 属性的值(高度以 px 为单位)存储在 Javascript 变量中作为数字?

转载 作者:行者123 更新时间:2023-12-01 00:57:51 25 4
gpt4 key购买 nike

如何将 Css 属性的值(高度以 px 为单位)存储在 Javascript 变量中作为数字?somediv.style.height (以 px 为单位)应存储在 变量。

<style>

#somediv {
width: 100px;
height: 20px;
}

</style>

<script>

let somediv = document.getElementById('somediv');
let height = somediv.style.height;

</script

但这不起作用。请帮助我!

最佳答案

使用 window.getCompulatedStyle 获取浏览器计算后的 CSS 值:

const divElement = document.getElementById("somediv");
const style = window.getComputedStyle(divElement);
const height = style.getPropertyValue("height");

关于javascript - 如何将 Css 属性的值(高度以 px 为单位)存储在 Javascript 变量中作为数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56384180/

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