同时写上bind:tap/catch:tap,那么点击时会触发catch:tap对应的事件名,但并不能阻止事件继续冒泡。同理:capture-bind:tap/capture-catch:tap 也一样,不能阻止事件的继续传播。
<view
id="inner"
style="width:200rpx;height:200rpx;background-color:#00BFFF;"
bind:tap="catchTap4"
catch:tap="catchTap2"
>
<view
id="inner"
style="width:200rpx;height:200rpx;background-color:#00BFFF;"
bind:tap="catchTap4"
catch:tap="catchTap2"
>
inner view222
</view>
</view>
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。