1 回复
<!–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事件卡住了!