美文网首页
常见的事件类型

常见的事件类型

作者: GaoXiaoGao | 来源:发表于2020-12-14 14:39 被阅读0次

    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"
    />
    

    相关文章

      网友评论

          本文标题:常见的事件类型

          本文链接:https://www.haomeiwen.com/subject/zbjhgktx.html