gpt4 book ai didi

javascript - 无法获取节点的高度

转载 作者:行者123 更新时间:2023-11-30 15:56:06 25 4
gpt4 key购买 nike

<分区>

Fiddle

        window.addEventListener("resize", getSize);

function getSize(){
var node = document.getElementById('sample');
var height = node.style.height;
console.log('height: ', height);//expect 100px, get nothing
}

#sample {
padding: 20px;
height: 100px;
overflow-y: auto;
border: solid blue;
margin: 10px 300px 10px 25px;
position: 'relative'

}

node.style.height 始终为空/null。请注意,我将高度设置为 100px。为什么?如何获取节点的 css 高度?

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