您好,登錄后才能下訂單哦!
本文實例講述了vue基礎(chǔ)之事件簡寫、事件對象、冒泡、默認行為、鍵盤事件。分享給大家供大家參考,具體如下:
v-on:click/mouseover......
簡寫的:
@click="" 推薦
事件對象:
@click="show($event)"
事件冒泡:
阻止冒泡:
a). ev.cancelBubble=true;
b).
@click.stop
推薦
默認行為(默認事件):
阻止默認行為:
a). ev.preventDefault();
b). @contextmenu.prevent
推薦
鍵盤:
@keydown $event ev.keyCode
@keyup
常用鍵:
回車
a). @keyup.13
b). @keyup.enter
上、下、左、右
@keyup/keydown.left
@keyup/keydown.right
@keyup/keydown.up
@keyup/keydown.down
.....
簡寫的: @click=""
推薦
<input type="button" value="按鈕" v-on:click="show()"> <input type="button" value="按鈕" @click="show()">
事件對象:@click="show($event)"
window.onload=function(){ new Vue({ el:'#box', data:{ }, methods:{ show:function(ev,b){ alert(ev.clientX); alert(b); } } }); };
<div id="box"> <input type="button" value="按鈕" @click="show($event,112)"> </div>
事件冒泡
阻止冒泡:
a). ev.cancelBubble=true;
window.onload=function(){ new Vue({ el:'#box', data:{ }, methods:{ show:function(ev){ alert(1); ev.cancelBubble=true; }, show2:function(){ alert(2); } } }); };
<div id="box"> <div @click="show2()"> <input type="button" value="按鈕" @click="show($event)"> </div> </div>
b). @click.stop
推薦
<div id="box"> <div @click="show2()"> <input type="button" value="按鈕" @click.stop="show()"> </div> </div>
默認行為(默認事件):
阻止默認行為:
a). ev.preventDefault();
window.onload=function(){ new Vue({ el:'#box', data:{ }, methods:{ show:function(ev){ alert(1); ev.preventDefault();//這里阻止了右擊顯示菜單的事件 } } }); };
<div id="box"> <input type="button" value="按鈕" @contextmenu="show($event)"> </div>
b). @contextmenu.prevent
推薦
<div id="box"> <input type="button" value="按鈕" @contextmenu.prevent="show()"> </div>
鍵盤事件:
@keydown $event ev.keyCode
window.onload=function(){ new Vue({ el:'#box', data:{ }, methods:{ show:function(ev){ alert(ev.keyCode); } } }); };
<div id="box"> <input type="text" @keydown="show($event)"> </div>
@keyup
window.onload=function(){ new Vue({ el:'#box', data:{ }, methods:{ show:function(ev){ alert(ev.keyCode); } } }); };
<div id="box"> <input type="text" @keyup="show($event)"> </div>
常用鍵:
1、回車
a). @keyup.13
b). @keyup.enter
window.onload=function(){ new Vue({ el:'#box', data:{ }, methods:{ show:function(){ alert('您按回車了'); } } }); };
<div id="box"> <!--<input type="text" @keyup.13="show()">--> <input type="text" @keyup.enter="show()"> </div>
2、上、下、左、右
@keyup/keydown.left
@keyup/keydown.right
@keyup/keydown.up
@keyup/keydown.down
window.onload=function(){ new Vue({ el:'#box', data:{ }, methods:{ show:function(){ alert("你按了左箭頭←"); } } }); };
<div id="box"> <input type="text" @keyup.left="show()"> </div>
希望本文所述對大家vue.js程序設(shè)計有所幫助。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。