vue事件修饰符

定义两个函数:

methods:{
      father(){
        console.log('i am father')
      },
      son(){
        console.log('i am son')
      }
    }

一、没有事件修饰符

<!-- 没有事件修饰符
        点击father 打印 i am father
        点击son 打印 i am son 和 i am father
  -->
<div @click="father">
    father
    <div @click="son">son</div>
  </div>

二、事件修饰符stop

<!-- 事件修饰符stop(阻止事件继续传播)
      点击father 打印 i am father
      点击son 打印 i am son (成功阻止father的打印)
  -->
  <div @click="father">
    father
    <div @click.stop="son">son</div>
  </div>

三、事件修饰符capture

<!-- 事件修饰符capture
      点击father 打印 i am father
      点击son 打印 i am father 和 i am son
      注意:这里先打印了 i am father 即先触发father函数再触发son函数
-->
<div @click.capture="father">
  father
  <div @click="son">son</div>
</div>

四、事件修饰符self

<!-- 事件修饰符self
    点击father 打印 i am father
    点击son 打印 i am son
    即加上self修饰符后,该元素只能由自己触发
-->
<div @click.self="father">
  father
  <div @click="son">son</div>
</div>

五、事件修饰符once

<!-- 事件修饰符once
    1.先点击father 打印 i am father 
    再点击son 打印 i am son
    2.先点击son 打印 i am son 和 i am father
    再点击father 没有任何打印结果
    即加上once修饰符后,该事件只会触发一次 
-->
<div @click.once="father">
  father
  <div @click="son">son</div>
</div>

六、事件修饰符prevent

<!-- 事件修饰符prevent
        当表单元素只有一个时,绑定提交事件会重新刷新页面
        加上prevent后不会重新刷新页面
  -->
  <form>
    <input type="text" value="123" @keydown.enter.prevent="father">
  </form>

七、事件修饰符passive

<!-- 对移动端的性能提升较大,当滚动行为发生时就立即触发事件,而不是等onScroll完成 -->

八、事件修饰符可以嵌套

<!-- 修饰符可以嵌套
  这样就表示father只能触发一次,且只能由自己触发(嵌套发生有先后顺序)
-->
<div @click.once.self="father">
  father
  <div @click="son">son</div>
</div>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值