我用 html + Cordova/Phonegap 构建了一个涂鸦应用程序。我使用 jquery(elem).on(touchstart/-move/-end) 来监听 touchevents。但这似乎在 Android 4.4 中被打破了;它只会触发 touchstart。
有小费吗?
编辑:这是代码
$("#canvas_doodle").on("touchstart", function(e){ doo.touchBegin(e); });
$("#canvas_doodle").on("touchmove", function(e){ doo.touchMove(e); });
$("#canvas_doodle").on("touchend", function(e){ doo.touchEnd(e); });