小程序之事件绑定

事件的写法为key-value形式

key:
bind + 事件类型【touchstart,touchemove,touchcancel,touchend,tap,longtap】——>不会阻止事件冒泡
catch + 事件类型【touchstart,touchemove,touchcancel,touchend,tap,longtap】——>阻止事件冒泡
value:
一个字符串  需要与page中命名的函数同名

example

bindtap="clickMe"

你可能感兴趣的:(小程序之事件绑定)