使用 LitElement 和 shadow dom。我曾经在 light dom 中有这个代码:
const {scrollHeight,scrollTop,clientHeight} = document.documentElement;
当我切换到使用 shadow dom 时,this.shadowRoot.documentElement 会中断。
firstElementChild 似乎工作。但它是等价的吗?
const {scrollHeight,scrollTop,clientHeight} = this.shadowRoot.firstElementChild;
在 shadowroot 中使用 scrollHeight、scrollTop 等文档属性的最佳方式是什么?
谢谢!