button如何阻止冒泡?
bind和catch可以处理冒泡,但比如调起分享的时候要必须用button open-type="share"完成,不能绑定事件,这种情况如何阻止冒泡?
4 回复
open-type="share"也可以catchtap的~~
也会执行的。不冲突
<button open-type="share" catchtap="csss">转发给好友</button>
csss:function (e) {
console.log("e",e);
}