微信小程序catchtap与bindtap的差异与用法
catchtap 与 bindtap 的差异
catchtap 默认阻止冒泡事件
bindtap 默认不阻止冒泡事件
catchtap 与 bindtap 的差异
他们的用发类似
<view catchtap="copyTel" class="info flex flex-column flex-main-between" id="{{item.id}}">
<view class="tel">
<view>
<image class="telImg" src="/statics/images/tel.png"></image>
</view>
</view>
</view>
copyTel(e){
console.log(e.currentTarget.id)
this.data.teacherList.forEach(element => {
if(element.id === e.currentTarget.id){
wx.makePhoneCall({
phoneNumber: element.tel
})
}
});
},
他们无需传参自动获取参数
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。