一.前端伪代码如下
<view @tap="parentEvent">
触发1
<view @tap.stop="childEvent">
触发2
</view>
</view>
二.处理方式
- 改事件,改为@touchend事件
<view @tap="parentEvent">
触发1
<view @touchend="childEvent">
触发2
</view>
</view>
- 改触发函数处理方式
parentEvent(e) {
console.log('parentEvent');
},
childEvent(e) {
console.log('childEvent');
// 在方法后加入下代码
e.stopPropagation();
}