e.target.id 중에서 id에 오류가 나서 봤는데
'EventTarget' 타입에 id 프로퍼티가 존재하지 않는다고 한다.
Solved: TS "Property '...' does not exist on type 'EventTarget'"
The reason this is the case is simply because all event targets might not be HTML elements. For example the event target can be also be XMLHttpRequest
, FileReader
, AudioNode
, AudioContext
, etc. 라고 한다.
모든 이벤트 타겟이 HTML elements가 아닐 수 있기 때문이므로, HTML elements라는 것을 알려주면 될 듯 하다.
(e.target as Element).id