vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼
整理文檔,搜刮出一個(gè)vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼,稍微整理精簡一下做下分享。
1.事情對(duì)象
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <script src="http://unpkg.com/vue/dist/vue.js"></script> <script type="text/javascript"> window.onload = function(){ var vm = new Vue({ el:'#box', methods:{ show:function(event){ console.log(event); //event 這個(gè)就是事件對(duì)象了 } } }); } </script> </head> <body> <div id="box"> <input type="button" value="按鈕" @click="show($event)"> </div> </body> </html>
通過show($event)把事件對(duì)象傳到方法里
2.事件冒泡
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <script src="http://unpkg.com/vue/dist/vue.js"></script> <script type="text/javascript"> window.onload = function(){ var vm = new Vue({ el:'#box', methods:{ show:function(){ alert(1); }, show1:function(){ alert(2); } } }); } </script> </head> <body> <div id="box"> <div @click="show1()"> <input type="button" value="按鈕" @click="show()"> </div> </div> </body> </html>
點(diǎn)擊按鈕的話他會(huì),執(zhí)行show ,show1方法,依次彈出1,2。
怎么來阻止
<1> 利用我們上面講過的event對(duì)象: event.cancelBubble = true; //這種就阻止了
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <script src="http://unpkg.com/vue/dist/vue.js"></script> <script type="text/javascript"> window.onload = function(){ var vm = new Vue({ el:'#box', methods:{ show:function(event){ alert(1); event.cancelBubble = true; }, show1:function(){ alert(2); } } }); } </script> </head> <body> <div id="box"> <div @click="show1()"> <input type="button" value="按鈕" @click="show($event)"> </div> </div> </body> </html>
<2>利用vue的方法阻止冒泡:給HTML元素綁定click事件的時(shí)候,改為@click.stop="show()"
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <script src="http://unpkg.com/vue/dist/vue.js"></script> <script type="text/javascript"> window.onload = function(){ var vm = new Vue({ el:'#box', methods:{ show:function(event){ alert(1); //event.cancelBubble = true; }, show1:function(){ alert(2); } } }); } </script> </head> <body> <div id="box"> <div @click="show1()"> <input type="button" value="按鈕" @click.stop="show()"> </div> </div> </body> </html>
3.默認(rèn)行為
比如contextmenu右鍵菜單
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <!-- // <script src="vue.js"></script> --> <script src="http://unpkg.com/vue/dist/vue.js"></script> <script type="text/javascript"> window.onload = function(){ var vm = new Vue({ el:'#box', methods:{ show:function(){ alert(1); }, show1:function(){ alert(2); } } }); } </script> </head> <body> <div id="box"> <input type="button" value="按鈕" @contextmenu="show()"> <input type="button" value="按鈕1" @contextmenu.prevent="show1()"> <p>//按鈕右擊點(diǎn)下去會(huì)依次出現(xiàn) 彈窗 1, 還有右擊的默認(rèn)菜單</p> <p>//按鈕1右擊只出現(xiàn) 彈窗 2</p> </div> </body> </html>
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
vue 封裝自定義組件之tabal列表編輯單元格組件實(shí)例代碼
這篇文章主要介紹了vue 封裝自定義組件tabal列表編輯單元格組件實(shí)例代碼,需要的朋友可以參考下2017-09-09Vue動(dòng)態(tài)組件與內(nèi)置組件淺析講解
閑話少說,我們進(jìn)入今天的小小五分鐘學(xué)習(xí)時(shí)間,前面我們了解了vue的組件,我們本文主要是講解vue的動(dòng)態(tài)組件和內(nèi)置組件,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2022-08-08vue中使用echarts刷新可以正常渲染但路由跳轉(zhuǎn)不顯示的問題解決
在?Vue?中使用?ECharts?組件時(shí),遇到路由跳轉(zhuǎn)后圖表不顯示的問題可能是因?yàn)榻M件銷毀和重新創(chuàng)建的原因,所以本文給大家介紹了vue中使用echarts刷新可以正常渲染但路由跳轉(zhuǎn)不顯示問題的解決方法,需要的朋友可以參考下2024-02-02vue使用swiper實(shí)現(xiàn)左右滑動(dòng)切換圖片
這篇文章主要為大家詳細(xì)介紹了vue使用swiper實(shí)現(xiàn)左右滑動(dòng)切換圖片,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2020-10-10在vue中多次調(diào)用同一個(gè)定義全局變量的實(shí)例
今天小編就為大家分享一篇在vue中多次調(diào)用同一個(gè)定義全局變量的實(shí)例,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2018-09-09