javascript – 获取touchmove或touchend的当前DOM对象已结束

前端之家收集整理的这篇文章主要介绍了javascript – 获取touchmove或touchend的当前DOM对象已结束前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
正如Mozilla在 TouchEvent页面上所述:

The event’s target is the same element that received the touchstart
event corresponding to the touch point,even if the touch point has
moved outside that element.

这与mousemove和mouseup不同,其中目标实际上是鼠标结束的DOM元素.

在没有使用任何库的情况下,最好的方法获取我的touchmove或touchend事件发生的元素?

解决方法

从事件对象中读取坐标( pageXpageY).然后使用 document.elementFromPoint(x,y)获取该位置的顶部元素.
原文链接:https://www.f2er.com/js/157917.html

猜你在找的JavaScript相关文章