我正在开发一个支持桌面和移动设备上的触摸事件的应用程序。当使用类似的东西时(每https://developer.apple.com/library/safari/#documentation/appleapplications/reference/SafariWebContent/HandlingEvents/HandlingEvents.html)
element.addEventListener("touchstart", touchStart, false);
element.addEventListener("touchmove", touchMove, false);
element.addEventListener("touchend", touchEnd, false);
element.addEventListener("touchcancel", touchCancel, false);
这些仅在 ipad 和 iphone 上测试时触发,而不是在桌面上。由于我是在桌面上开发的,我怎么能让这些事件被识别?