如何在打字稿中找到事件的来源

时间:2017-01-30 06:13:36

标签: javascript typescript

出于某种原因,我对我的应用程序的触摸和鼠标交互有不同的行为,所以我想知道我的应用程序的事件来源。在Javascript中,我能够找到事件的来源,无论是触摸还是鼠标或笔通过

function containerMove(evt) {
    alert(evt.pointerType);
}

但在TypeScript中,我无法找到这样的任何属性。任何人都可以帮我在TypeScript中找到事件的来源吗?

提前致谢

1 个答案:

答案 0 :(得分:3)

如果您的活动属于PointerEvent类型(否则它不应具有pointerType属性),请简单说明:

function containerMove(evt: PointerEvent) {
    alert(evt.pointerType);
}