阅读关于 window.innerHeight
的
MDN 文章后,我想在我的一些测试中使用
<html>
元素 clientHeight
属性,因为它是“窗口的高度减去其水平滚动条和任何边框”。
所以我需要对
<html>
元素的引用。
检查了window对象和document对象之后,获得这个引用的唯一方法就是查询dom。例如这样的:
const htmlElement = document.getElementsByTagName("html")[0];
我想知道是否有更好的选择?也许像
document.htmlElement
这样简单?
你尝试过吗
document.documentElement