我想在浏览器控制台中获取div class = "group-members"
的真实的高度
当页面滚动到底部时,块继续加载
我写了这样的东西来得到它的高度:
var h = window.getComputedStyle(document.getElementsByClassName('group-members'), null).getPropertyValue('height');
window.scroll({
top: h,
left: 0,
behavior: 'smooth'
});
字符串
当我运行这些代码时,
Uncaught TypeError: Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'.
型
怎么了?我怎样才能得到这个div变量的高度?
3条答案
按热度按时间q7solyqu1#
个字符
afdcj2ne2#
您需要向window.getComputedStyle传递单个元素
所以你应该这样做:
字符串
rpppsulh3#
您可以使用ClientHeight。
字符串