我想同时启用垂直滚动和水平滑动。我在touchmove
而不是touchend
中检测到触摸位置,因为我需要实时坐标。不幸的是,Chrome for Android会在touchcancel
之后立即触发touchstart
,因此不再触发touchmove
。通过touchcancel
或event.preventDefault()
调用touchstart
可以避免此touchmove
事件。但是滚动会以这种方式被禁用,所以我的第一种方法是不使用event.preventDefault()
,而是使用一些替代方法来检测touchcancel
之后的触摸位置。有可能吗?