<view class="end-btn" @longpress="handleLongEnd" @touchend="onTouchEnd">
<image class="btn-img" v-if="!state.longEnd" mode="aspectFill" src="../../static/icon-end.png"></image>
<image class="btn-img" v-else mode="aspectFill" src="../../static/end-anition.gif"></image>
</view>
const onTouchEnd = () => {
console.log("长按松开事件")
}
点击,松开始时,touchend 事件会触发,会打印
长按,再松开时,touchend 事件为什么不触发呢
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。