最新文章專(zhuān)題視頻專(zhuān)題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專(zhuān)題1關(guān)鍵字專(zhuān)題50關(guān)鍵字專(zhuān)題500關(guān)鍵字專(zhuān)題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專(zhuān)題關(guān)鍵字專(zhuān)題tag2tag3文章專(zhuān)題文章專(zhuān)題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專(zhuān)題3
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:34:07
文檔

vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼

vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼:整理文檔,搜刮出一個(gè)vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼,稍微整理精簡(jiǎn)一下做下分享。 1.事情對(duì)象 <!DOCTYPE html> <html> <head> <title></title> <meta charset=ut
推薦度:
導(dǎo)讀vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼:整理文檔,搜刮出一個(gè)vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼,稍微整理精簡(jiǎn)一下做下分享。 1.事情對(duì)象 <!DOCTYPE html> <html> <head> <title></title> <meta charset=ut

整理文檔,搜刮出一個(gè)vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼,稍微整理精簡(jiǎn)一下做下分享。

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>

通過(guò)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。

怎么來(lái)阻止

<1> 利用我們上面講過(guò)的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>

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼

vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼:整理文檔,搜刮出一個(gè)vue2.0的contextmenu右鍵彈出菜單的實(shí)例代碼,稍微整理精簡(jiǎn)一下做下分享。 1.事情對(duì)象 <!DOCTYPE html> <html> <head> <title></title> <meta charset=ut
推薦度:
標(biāo)簽: VUE 右鍵 彈出菜單
  • 熱門(mén)焦點(diǎn)

最新推薦

猜你喜歡

熱門(mén)推薦

專(zhuān)題
Top