2

我想从中获取元素高度document,我正在尝试使用const header = document.getElementsByClassName(myClass). 但是在转换为 时存在一些Element问题HTMLElement。是否有一些方法可以HTMLElement从构建string或获得attributes类似offsetHeightfrom HTMLCollection

const myheader = document.getElementsByClassName(myClass);
console.info(myHeader[0].offsetHeight);
4

1 回答 1

0

是的,你可以使用这样的东西来获得偏移高度

document.getElementsByClassName('popup')[0].offsetHeight
于 2018-12-25T16:13:19.700 回答