## v-on指令
**缩写:** @
**类型:** Function | Inline Statement
**参数:** event (required)
**修饰符:**
- .stop - 调用 event.stopPropagation()。
- .prevent - 调用 event.preventDefault()。
- .capture - 添加事件侦听器时使用 capture 模式。
- .self - 只当事件是从侦听器绑定的元素本身触发时才触发回调。
- .{keyCode | keyAlias} - 只当事件是从特定键触发时才触发回调。
- .native - 监听组件根元素的原生事件。
- .once - 只触发一次回调。
- .left - (2.2.0) 只当点击鼠标左键时触发。
- .right - (2.2.0) 只当点击鼠标右键时触发。
- .middle - (2.2.0) 只当点击鼠标中键时触发。
- .passive - (2.3.0) 以 { passive: true } 模式添加侦听器
**用法:**
绑定事件监听器。事件类型由参数指定。表达式可以是一个方法的名字或一个内联语句,如果没有修饰符也可以省略。
用在普通元素上时,只能监听 原生 DOM 事件。用在自定义元素组件上时,也可以监听子组件触发的自定义事件。
在监听原生 DOM 事件时,方法以事件为唯一的参数。如果使用内联语句,语句可以访问一个 $event **属性: **v-on:click="handle('ok', $event)"。
>[info]示例
~~~
<!-- 方法处理器 -->
<button v-on:click="doThis"></button>
<!-- 内联语句 -->
<button v-on:click="doThat('hello', $event)"></button>
<!-- 缩写 -->
<button @click="doThis"></button>
<!-- 停止冒泡 -->
<button @click.stop="doThis"></button>
<!-- 阻止默认行为 -->
<button @click.prevent="doThis"></button>
<!-- 阻止默认行为,没有表达式 -->
<form @submit.prevent></form>
<!-- 串联修饰符 -->
<button @click.stop.prevent="doThis"></button>
<!-- 键修饰符,键别名 -->
<input @keyup.enter="onEnter">
<!-- 键修饰符,键代码 -->
<input @keyup.13="onEnter">
<!-- 点击回调只会触发一次 -->
<button v-on:click.once="doThis"></button>
~~~
在子组件上监听自定义事件(当子组件触发 “my-event” 时将调用事件处理器):
~~~
<my-component @my-event="handleThis"></my-component>
<!-- 内联语句 -->
<my-component @my-event="handleThis(123, $event)"></my-component>
<!-- 组件中的原生事件 -->
<my-component @click.native="onClick"></my-component>
~~~
>[success]代码示例1
点击下面两个按钮,都能弹出1。
~~~
<div id="box">
<input type="button" value="按钮1" onclick='alert(1)' />
<input type="button" value="按钮2" v-on:click='show()' />
</div>
<script type="text/javascript">
new Vue({
el: '#box',
data: {
},
methods:{
show:function(){//方法
alert(1);
}
}
})
</script>
~~~
>[success]预览:https://ityanxi.github.io/Vue-tutorial/chapter04/08v-on1.html
-----
>[info]代码示例2
~~~
<div id="box">
<input type="button" value="按钮1click" v-on:click='add()' />
<input type="button" value="按钮2mouseover" v-on:mouseover='add()' />
<input type="button" value="按钮3mouseout" v-on:mouseout='add()' />
<input type="button" value="按钮4mousedown" v-on:mousedown='add()' />
<input type="button" value="按钮5mouseup" v-on:mouseup='add()' />
<input type="button" value="按钮6dblclick" v-on:dblclick='add()' />
<hr />
<ul>
<li v-for='value in arr'>
{{value}}
</li>
</ul>
</div>
<script type="text/javascript">
new Vue({
el: '#box',
data: {
arr:['apple','banana','orange','pear']
},
methods:{
add:function(){//方法
this.arr.push('tomato')
}
}
})
</script>
~~~
用v-on 给每个按钮分别添加不同的事件,来向数组追加元素。
>[success]预览:https://ityanxi.github.io/Vue-tutorial/chapter04/08v-on2.html
效果演示:
![](https://box.kancloud.cn/ce8b2efff89c0500a1a5b0444880c274_612x173.png)
>[success]代码示例3 缩写
~~~
<div id="box">
<input type="button" value="按钮" v-on:click="show()"/>
<input type="button" value="按钮" @click="show()"/>
</div>
<script type="text/javascript">
new Vue({
el: '#box',
data: {
},
methods:{
show:function(){
alert(1)
}
}
})
</script>
~~~
>[success]预览:https://ityanxi.github.io/Vue-tutorial/chapter04/08v-on3.html
---
>[success]代码示例4 事件对象
~~~
<div id="box">
<input type="button" value="按钮" v-on:click="show()"/>
<input type="button" value="按钮" @click="show($event)"/>
<input type="button" value="按钮" @click="show($event,12)"/>
</div>
<script type="text/javascript">
new Vue({
el: '#box',
data: {
},
methods:{
show:function(ev,b){
alert(ev.clientX);
alert(b)
}
}
})
</script>
~~~
>[success]预览:https://ityanxi.github.io/Vue-tutorial/chapter04/08v-on4.html
---
>[success]代码示例5 事件冒泡
~~~
<div id="box">
<div @click="show2()">
<input type="button" value="按钮" @click="show($event)"/>
<input type="button" value="按钮" @click.stop="show2()"/>
</div>
</div>
<script type="text/javascript">
new Vue({
el: '#box',
data: {
},
methods:{
show:function(ev){
alert(1);
ev.cancelBubble=true;//阻止事件冒泡
},
show2:function(){
alert(2)
}
}
})
</script>
~~~
>[success]预览:https://ityanxi.github.io/Vue-tutorial/chapter04/08v-on5.html
>[success]代码示例6 默认行为
~~~
<div id="box">
<input type="button" value="按钮" @contextmenu="show($event)"/>
<input type="button" value="按钮" @contextmenu.prevent="show()"/>
</div>
<script type="text/javascript">
new Vue({
el: '#box',
data: {
},
methods:{
show:function(ev){
alert(1);
ev.preventDefault();//阻止默认行为
}
}
})
</script>
~~~
>[success]预览:https://ityanxi.github.io/Vue-tutorial/chapter04/08v-on6.html
---
>[success]代码示例7 键盘事件1
~~~
<div id="box">
<input type="text" value="按钮" @keydown="show($event)"/>
</div>
<script type="text/javascript">
new Vue({
el: '#box',
data: {
},
methods:{
show:function(ev){
alert(ev.keyCode)
}
}
})
</script>
~~~
>[success]预览:https://ityanxi.github.io/Vue-tutorial/chapter04/08v-on7.html
---
>[success]代码示例8 键盘事件2
~~~
<div id="box">
<input type="text" value="按钮" @keyup="show($event)"/>
</div>
<script type="text/javascript">
new Vue({
el: '#box',
data: {
},
methods:{
show:function(ev){
alert(ev.keyCode)
}
}
})
</script>
~~~
>[success]预览:https://ityanxi.github.io/Vue-tutorial/chapter04/08v-on8.html
----
>[success]代码示例8 键盘事件3
~~~
<div id="box">
<input type="text" value="按钮" @keyup.13="show()"/>
<input type="text" value="按钮" @keyup.enter="show()"/>
<input type="text" value="按钮" @keyup.up="show()"/>
<input type="text" value="按钮" @keyup.down="show()"/>
<input type="text" value="按钮" @keyup.left="show()"/>
<input type="text" value="按钮" @keyup.right="show()"/>
</div>
<script type="text/javascript">
new Vue({
el: '#box',
data: {
},
methods:{
show:function(){
alert("你按回车了")
}
}
})
</script>
~~~
>[success]预览:https://ityanxi.github.io/Vue-tutorial/chapter04/08v-on9.html
- 前端新手村
- 前言
- 第1章 遇见Vue.js
- 第一个Vue.js程序
- vue尝鲜
- 第2章 概念理解
- 渐进式框架
- 虚拟DOM
- MVVM模式
- MVX模式是什么
- 第3章 Vue基础概览
- 第4章 Vue内置指令详解
- vue-text
- vue-html
- v-show
- v-if
- v-else
- v-else-if
- v-for
- v-on
- v-bind
- v-model
- v-pre
- v-cloak
- v-once
- 第5章 基础demo小练习
- 图书管理系统
- 页面布局
- 列表渲染
- 功能实现
- 基于BootStrap+Vuejs实现用户信息表
- 功能描述
- 布局实现
- 星座判断
- 第6章 组件
- 什么是组件
- 使用组件
- Prop
- 自定义事件
- 使用Slot分发内容
- 动态组件
- 杂项
- 第7章-过渡
- 过渡效果
- 概述
- 单元素/组件的过渡
- 初始渲染的过渡
- 多个元素的过渡
- 多个组件的过渡
- 列表过渡
- 可复用的过渡
- 动态过渡
- 过渡状态
- 状态动画与watcher
- 动态状态转换
- 通过组件组织过渡
- Render函数
- 基础
- createElement参数
- 使用JavaScript代替模板功能
- JSX
- 函数化组件
- 模板编译
- 自定义指令
- 简介
- 钩子函数
- 钩子函数参数
- 函数简写
- 对象字面量
- Vuex状态管理
- Vuex是什么?
- Vuex的安装
- Vuex起步
- data的替代品-State和Getter
- 测试Getter
- Action-操作的执行者
- 测试Action
- 只用Mutation修改状态
- 测试Mutations
- Vuex的基本结构
- 子状态和模块
- 用服务分离外部操作
- Vue-router
- Vue-router是什么
- Vue-router安装
- 基本用法1
- 基本用法2
- Vue-cli
- Vue中的Node.js
- Vue中的npm、cnpm
- Vue中的webpack
- 安装
- 基本使用
- 模板
- 全局API
- Vue.extend
- Vue.nextTick
- Vue.set
- Vue.delete
- Vue.directive
- Vue.filter
- Vue.component
- Vue.use
- Vue.mixin
- Vue.compile
- 附录
- 相关网站
- 尤雨溪
- 第10章 webpack
- webpack安装
- webpack基本使用
- webpack命令行
- webpack配置文件
- 单页面应用SPA
- 第1章 Vue.js简介
- 1.1 Vue.js简介
- 1.1.1 Vue.js是什么
- 1.1.2 为什么要用Vue.js
- 1.1.3 Vue.js的发展历史
- 1.1.4 Vue.js与其他框架的区别
- 1.2 如何使用Vue.js
- 1.2.1 第一个Vue.js程序
- 1.2.2 Vue.js小尝鲜
- 1.3 概念详解
- 1.3.1 什么是渐进式框架
- 1.3.2 虚拟DOM是什么
- 1.3.3 如何理解MVVM
- 第2章 基础概览
- 2.1 Vue实例
- 2.1.1 构造器
- 2.1.2 属性与方法
- 2.1.3 实例生命周期
- 2.1.4 生命周期图示
- 2.2 模板语法
- 2.2.1 插值
- 2.2.2 指令
- 2.2.3 过滤器
- 2.2.4 缩写
- 第3章 Class与Style的绑定
- 第4章 模板渲染
- 第5章 事件详解
- 第6章 表单控件绑定
- 第7章 指令详解
- 7.1 内部指令
- 7.2 自定义指令
- 7.3 指令的高级选项
- 第8章 计算属性
- 第9章 过滤器
- 第10章 组件
- 10.1 什么是组件
- 10.2 注册组件
- 10.3 组件选项
- 10.4 组件间的通信
- 10.5 内容分发
- 10.6 动态组件