标签: javascript cordova touch
正如标题所说,我正在使用PhoneGap运行Android 4.x。
我不愿意使用jQuery,所以在这里没有jQuery。
如果启用touchstart,如何获取touchend,touchmove和e.preventDefault的坐标?
touchstart
touchend
touchmove
e.preventDefault
答案 0 :(得分:2)
坐标位于e,即事件变量。
e
var x = e.targetTouches[0].pageX, y = e.targetTouches[0].pageY;
来自:Obtaining Ipad touchstart coordinates