Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正如标题所说,我正在使用 PhoneGap 运行 Android 4.x。
我不愿意使用 jQuery,所以这里没有 jQuery。
如何获取 的坐标,touchstart何时启touchend用?touchmovee.preventDefault
touchstart
touchend
touchmove
e.preventDefault
坐标在e事件变量中。
e
var x = e.targetTouches[0].pageX, y = e.targetTouches[0].pageY;
来自:获取Ipad touchstart坐标