bindtouchmove触摸划动中怎么获得当前对应的dom节点信息
需求:触摸左右划动获得对应的dom元素
目前左右划动 ,只能获得起点时获得的元素 不能获得最后触摸元素 只有左右距离数据 ,我需要获得dataset里的value值。
<view>触摸点亮相应的文本</view>
<view class=‘touch-case’ bindtouchstart=‘touchStart’ bindtouchmove=‘touchMove’ bindtouchend=‘touchEnd’>
<view data-value=‘1’>1</view>
<view data-value=‘2’>2</view>
<view data-value=‘3’>3</view>
<view data-value=‘4’>4</view>
<view data-value=‘5’>5</view>
</view>
目前需要获得划动中对应的dom元素的value值