首页 > 编程 > JavaScript > 正文

详解vue.js的事件处理器v-on:click

2019-11-19 16:14:22
字体:
来源:转载
供稿:网友

用 v-on 指令监听 DOM 事件

注意:HTML5中不能使用v-on,换为@

(1)html代码:

<div id="example">  <button v-on:click="greet">Greet</button>  // 或者 <button @click="greet">Greet</button> </div> 

(2)js代码:

var vm = new Vue({  el: '#example',  data: {  name: 'Vue.js'  },  // 在 `methods` 对象中定义方法  methods: {  greet: function (event) {   // 方法内 `this` 指向 vm   alert('Hello ' + this.name + '!')   // `event` 是原生 DOM 事件   alert(event.target.tagName)  }  } }) 

 (3)效果展示:

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表