1.点击事件
<button bindtap="handleBtnClick" size="mini">点击</button>
<button bind:tap="handleBtnClick" size="mini">点击</button>
<button catchtap="handleBtnClick" size="mini">点击</button>
<button catch:tap="handleBtnClick" size="mini">点击</button>
2.input的事件
bindinput //输入事件
bindblur //失去焦点
bindfocus //获取焦点
3.共同的事件
touchstart 手指触摸动作开始
touchmove 手指触摸后移动
touchcancel 手指触摸被打断
toucheend 手指触摸动作结束
tap 手指触摸后马上移开
longpress 手指触摸后,超过350ms再离开,如果指定了事件回调并触发了这个事件,tag事件不再被触发
longtag 手指触摸后,超过350ms再离开
<view class="retange"
bindtouchstart="touchstart"
bindtouchmove="touchmove"
bindtouchend="touchend"
bindtap="tap"
bindlongpress="longpress"
/>
网友评论