欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解Vue方法与事件

程序员文章站 2023-11-22 15:57:10
一 vue方法实现

一 vue方法实现

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>vue方法与事件</title>
    <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
    <script src="../js/vue.js" type="text/javascript" charset="utf-8"></script>
  </head>
  <body>
    <div id="test">
      <button @click="sayhi">点击我</button> <!--这里使用@-->
    </div>
    <script type="text/javascript">
      var myvue = new vue({
        el: '#test',
        methods: {   //这里使用methods
          sayhi: function () {
            alert('我被点击了')
          }
        }
      })
    </script>
  </body>
</html>

二 方法传参

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>vue方法与事件</title>
    <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
    <script src="../js/vue.js" type="text/javascript" charset="utf-8"></script>
  </head>
  <body>
    <div id="test">
      <button @click="sayhi('你好')">说你好</button> <!--这里使用@-->
      <button @click="sayhi('我被点击了')">说我被点击了</button> <!--这里使用@-->
    </div>
    <script type="text/javascript">
      var myvue = new vue({
        el: '#test',
        methods: {   //这里使用methods
          sayhi: function (message) {
            alert(message)
          }
        }
      })
    </script>
  </body>
</html>

三 vue访问原生 dom 事件

注意用$event获取

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>vue方法与事件</title>
    <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
    <script src="../js/vue.js" type="text/javascript" charset="utf-8"></script>
  </head>
  <body>
    <div id="test">
      <button @click="changecolor('你好',$event)">点击我</button> <!--这里使用@-->
      <div style="height: 100px;width: 100px;background-color: red;" @mouseover="over('鼠标从我上面滑过',$event)">
        鼠标从我上面滑过试试
      </div>
    </div>
    <script type="text/javascript">
      var myvue = new vue({
        el: '#test',
        methods: {   //这里使用methods
          changecolor: function (message, event) {
            alert(message+event);  //弹出我被点击了,事件是[object mouseevent]
          },
          over :function (message, event) {
            alert(message+event);  //弹出鼠标从我上面滑过,事件是[object mouseevent]
          }
        }
      })
    </script>
  </body>
</html>

四 事件修饰符

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>vue方法与事件</title>
    <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
    <script src="../js/vue.js" type="text/javascript" charset="utf-8"></script>
  </head>
  <body>
    <div id="test">
      <button @click.stop="sayhi('你好')">说你好</button> <!-- 阻止单击事件冒泡 -->
      <button @click.prevent="sayhi('你好')">说你好</button> <!-- 提交事件不再重载页面 -->
      <button @click.stop.prevent="sayhi('你好')">说你好</button> <!-- 阻止单击事件冒泡和提交事件不再重载页面 -->
      <button @click.capture="sayhi('你好')">说你好</button> <!-- 添加事件侦听器时使用 capture 模式 -->
      <button @click.self="sayhi('你好')">说你好</button>  <!-- 只当事件在该元素本身(而不是子元素)触发时触发回调 -->
      
      <div @keyup.13="sayhi('你好')">说你好</div> <!-- 只有在 keycode 是 13 时调用 vm.submit() -->
    </div>
    <script type="text/javascript">
      var myvue = new vue({
        el: '#test',
        methods: {   //这里使用methods
          sayhi: function (message) {
            alert(message)
          }
        }
      })
    </script>
  </body>
</html>

本文下载:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。