本文共 1512 字,大约阅读时间需要 5 分钟。
1 2 3 4 5Vue方法与事件 6 7 8 9 1011 1213 23 24
1 2 3 4 5Vue方法与事件 6 7 8 9 1011 12 1314 24 25
注意用$event获取
1 2 3 4 5Vue方法与事件 6 7 8 9 1011 1216 29 3013 鼠标从我上面滑过试试1415
Vue方法与事件 说你好
v-on:click/mouseover......
简写的: @click="" 推荐1、事件对象:
@click="show($event)" 2、事件冒泡: 阻止冒泡: a). ev.cancelBubble=true; b). @click.stop 推荐 3、默认行为(默认事件): 阻止默认行为: a). ev.preventDefault(); b). @contextmenu.prevent 推荐 4、键盘: @keydown $event ev.keyCode @keyup常用键:
回车 a). @keyup.13 b). @keyup.enter 上、下、左、右 @keyup/keydown.left // 左 @keyup/keydown.right // 右 @keyup/keydown.up // 上 @keyup/keydown.down // 下转载地址:http://wdjoo.baihongyu.com/