当前位置:   article > 正文

click.stop 阻止事件冒泡与click.prevent 阻止执行默认事件_js点击事件stop

js点击事件stop

click.stop 阻止事件冒泡与click.prevent 阻止执行默认事件

自己总是记不住,写了个小demo加强记忆

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<!-- 
@click.stop 阻止事件冒泡
@click.prevent 阻止执行默认事件
第一种执行顺序是:先提示2——》在提示1 ——》 提示"阻止跳转到百度"——》在跳转到百度
第二种执行顺序是:先提示2——》在提示"阻止跳转到百度"  阻止了冒泡跟默认事件
-->
<body>
  <div id="app">
    <p>第一种:没有修饰符</p>
    <div @click="btn1">
      <div @click="btn2">click.stop</div>
    </div>
    <div>
      <a href="http://baidu.com.cn" target="_blank" rel="noopener noreferrer" @click="btn3">click.prevent</a>
    </div>
    <hr>
    <p>第二种:添加修饰符</p>
    <div @click="btn1">
      <div @click.stop="btn2">click.stop</div>
    </div>
    <div>
      <a href="http://baidu.com.cn" target="_blank" rel="noopener noreferrer" @click.prevent="btn3">click.prevent</a>
    </div>
  </div>
</body>
<script src="../../js/vue/vue2.js"></script>
<script>
  new Vue({
    el:"#app",
    methods:{
      btn1() {
        alert(1);
      },
      btn2() {
        alert(2)
      },
      btn3() {
        alert("阻止跳转到百度")
      }
    }
  })
</script>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/79414
推荐阅读
相关标签
  

闽ICP备14008679号