关于touchend问题
小程序退出后进入微信后台,再重新进入小程序,touhend无效但是touchstat有效,有点懵
小程序退出后进入微信后台,再重新进入小程序,touhend无效但是touchstat有效,有点懵
<!–index.wxml–>
<view class=“container” bindtouchstart=“touchstart” bindtouchend=“touchend”>{{text}}</view>
Page({
data: {
text:‘XXX’
},
onLoad: function () {
},
touchstart: function (e) {
console.log(‘touchstart’)
this.setData({
text:‘touchstart’
})
},
touchend: function (e) {
console.log(‘touchend’)
this.setData({
text: ‘touchend’
})
}
})
测试了没有你说的那个问题啊?是不是touchstat事件卡住了!