基本打字稿html5事件类型

时间:2019-06-28 16:41:10

标签: html typescript events

什么是普通html 5事件类型,专门用于输入onchange事件? tsc抱怨“值”不是event.target的属性。

myinput.onchange = (e: Event) => {
    this.value = e.target.value; // <- Property 'value' does not exist on type 'EventTarget'
};

谢谢。

0 个答案:

没有答案