Skip to content

事件

https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxml/event.html

常见的有:

  • touchstart、touchmove、touchcancel、touchend
  • tap
  • longpress

bind 绑定事件,如:bindtap
catch 绑定事件 并 阻止冒泡,如:catchtap
capture- 表示捕获阶段,如 capture-bind
mut-bind,互斥,不影响 bind 和 catch ,但是会忽略父节点 mut-bind,如:mut-bind:tap

事件对象

https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxml/event.html#事件对象