ie11是否支持多点触控?

Does Internet Explorer 11 support Multi-Touch?

本文关键字:多点 是否 支持 ie11      更新时间:2023-09-26

我正在开发一个多点触控绘图应用程序,它在Chrome和Firefox中工作得很好,但我无法从微软获得任何直接的答案,至于Internet Explorer 11中是否支持多点触控(即:event.touch)。

现在在其他浏览器中工作的代码片段如下:

window.addEventListener("touchstart", onTouchStart, true);
function onTouchStart(event) {
  console.log(event.touches.length);
}

在chrome中,它会打印出触摸的数量,但我在Internet Explorer中什么也得不到。如果有人知道这是不是IE的问题,我会很感激。

谢谢。

IE有不同的方法:W3C指针事件http://msdn.microsoft.com/en-us/library/ie/dn433244.aspx

注。:如果你只是想测试多点触控支持,使用navigator.msMaxTouchPoints .

if (navigator.msMaxTouchPoints > 1) { ... }