在Typescript中触发点击 - 类型'Element'上不存在属性'click'。
- 论坛
- 在Typescript中触发点击 - 类型'Element'上不存在属性'click'。
10 浏览
在Typescript中触发点击 - 类型'Element'上不存在属性'click'。
我想在Typescript/Reactjs中的HTML元素上触发点击事件。
let element: Element = document.getElementsByClassName('btn')[0]; element.click();
上面的代码确实可以工作。但是我遇到了一个Typescript错误:
ERROR in [at-loader] ./src/App.tsx:124:17 TS2339: Property 'click' does not exist on type 'Element'.
那么正确的做法是什么呢?