当点击页面元素时,如何获取该Dom元素呢?
代码:
<div id="app">
<div id="example-1">
<button v-on:click="greet('abc', $event)" id="myBtn">Greet</button>
</div>
</div>
<script type="text/javascript">
var vm = new Vue({
el : "#app",
data : {
name : "vue"
},
methods:{
greet : function (str, e) {
alert(e.currentTarget.id);
console.log(e);
}
}
});
</script>
即,使用$event
这个特殊的属性来获取,而this
关键字指的是当前的Vue实例。
References
最新评论
本来在正常下载,突然就不能下载,并出现报错:a socket operation was attempted to an unreachable network。请问是什么原因呢
试了,还是不行,能不能更新一下
试了,确实不行,能不能更新一下
也推荐一下我自己写的 https://twitdown.com