vue 이벤트 대상,거품,기본 행동 차단

3215 단어 vue거품 이 일다
문 서 를 정리 하고 vue 이벤트 대상,거품,기본 행동 을 막 는 코드 를 찾 아 간략하게 정리 하여 공유 합 니 다.
이벤트 개체

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
  <title></title>
  <script src="../js/Vue.js" charset="utf-8"></script>
  <script type="text/javascript">
   window.onload = function(){
    var vm = new Vue({
     el:'#box',
     data:{},
     methods:{
      show:function(ev){
       alert(ev.clientX);
       alert(ev.clientY);
      }
     }
    });
   }
  </script>
 </head>
 <body>
  <div id="box">
   <input type="button" name="" value="  " @click="show($event)">
  </div>
 </body>
</html>

사건 이 불거지다

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
  <title></title>
  <script src="../js/Vue.js" charset="utf-8"></script>
  <script type="text/javascript">
   window.onload = function(){
    var vm = new Vue({
     el:'#box',
     data:{},
     methods:{
      show:function(){
       alert(111);
      //     
      //ev.cancelBubble = true;
      },
      show2:function(){
       alert(222);
      }
     }
    });
   }
  </script>
 </head>
 <body>
  <div id="box">
   <div @click="show2()">
    <input type="button" name="" value="  " @click.stop="show()">
   </div>
  </div>
 </body>
</html>
이벤트 기본 행동 막 기

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title></title>
  <style>
    .show2{
      padding:15px;;
    }
  </style>
  <script src="../js/Vue.js" charset="utf-8"></script>
  <script type="text/javascript">
    window.onload = function () {
      var vm = new Vue({
        el: '#box',
        data: {},
        methods: {
          show: function () {
            alert(111)
          },
          show2: function () {
            alert(222)
          }
        }
      });
    }
  </script>
</head>
<body>
<div id="box">
  <div class="show2">
    <input type="button" name="" value="  " @contextmenu.prevent="show()">
  </div>
</div>
</body>
</html>
본 고 에서 말 한 것 이 당신 에 게 도움 이 되 기 를 바 랍 니 다.vue 사건 의 대상,거품,기본 적 인 행 위 를 막 는 내용 을 소개 합 니 다.저희 사 이 트 를 계속 지 켜 봐 주시 기 바 랍 니 다!vue 를 배우 고 싶 으 면 본 사이트 에 계속 관심 을 가 져 도 됩 니 다.

좋은 웹페이지 즐겨찾기