标签:log ontouch ndt view function htm 赋值 输出 touch
html
<view class="list" bindtouchend="onTouchend", bindtouchstart="onTouchstart"> //邦定当移出手指时触发,按下手指时触发
js
onTouchend:function(e){
console.log(e.changedTouches[0].pagex); //输出触摸点座标偏移量
touchendx=e.changedTouches[0].pagex) //移出时赋值给触摸点座标偏移量
if(touchstartx>e.changedTouches[0].pagex) //按下手指大于触摸点座标偏移量
},
onTouchstart:function(e){ //按下手指
touchstartx = e.changedTouches[0].pagex //按下手指赋值给触摸点座标偏移量
console.log(e.changedTouches[0].pagex) //
},
标签:log ontouch ndt view function htm 赋值 输出 touch
原文地址:http://www.cnblogs.com/aivnfjgj/p/6358469.html