デスクトップおよびモバイル デバイスでのタッチ イベントをサポートするアプリを開発しています。次のようなものを使用する場合 ( 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 でテストするときにのみ発生します。デスクトップで開発しているので、これらのイベントが認識されるようにするにはどうすればよいですか?