收藏
回答

长按longpress事件,松开不触发touchend事件?

<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 事件为什么不触发呢
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容