获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
<!--index.wxml--> <view class="container" bindtouchstart="touchstart" bindtouchend="touchend">{{text}}</view> //index.js 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事件卡住了!
关于touchend问题小程序退出后进入微信后台,再重新进入小程序,touhend无效但是touchstat有效,有点懵
2018-06-15