码迷,mamicode.com
首页 > 其他好文 > 详细

阻止事件冒泡,阻止默认事件,event.stopPropagation()和event.preventDefault(),return false的区别

时间:2018-05-26 17:13:04      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:dem   bsp   art   auto   box   冒泡   页面跳转   UNC   www.   

1.event.stopPropagation()方法

这是阻止事件的冒泡方法,不让事件向documen上蔓延,但是默认事件任然会执行,当你掉用这个方法的时候,如果点击一个连接,这个连接仍然会被打开,

2.event.preventDefault()方法

这是阻止默认事件的方法,调用此方法是,连接不会被打开,但是会发生冒泡,冒泡会传递到上一层的父元素;

3.return false  ;

这个方法比较暴力,他会同事阻止事件冒泡也会阻止默认事件;写上此代码,连接不会被打开,事件也不会传递到上一层的父元素;可以理解为return false就等于同时调用了event.stopPropagation()和event.preventDefault()

4.我们来看看几组demo,使用jquery进行DOM操作

这是html代码,div里面套了一个a标签,连接到百度

[html] view plain copy

  1. <div class="box1">  
  2.             <href="http://www.baidu.com" target="_blank"></a>  
  3.         </div>  

css代码,a标签占父元素的空间的1/4,背景颜色为红色;

[html] view plain copy
 .box1{  
  1.                 height: 200px;  
  2.                 width: 600px;  
  3.                 margin: 0 auto;  
  4.             }  
  5.             .box1 a{  
  6.                 display: block;  
  7.                 height: 50%;  
  8.                 width: 50%;  
  9.                 background:red;  
  10.             }  

下面来看js代码,第一种 

[html] view plain copy
//不阻止事件冒泡和默认事件  
  1.               
  2.             $(".box1").click(function(){  
  3.                 console.log("1")//不阻止事件冒泡会打印1,页面跳转;               
  4.             });   

第二种

[html] view plain copy
  1. //阻止冒泡  
  2.             $(".box1 a").click(function(event){  
  3.                 event.stopPropagation();//不会打印1,但是页面会跳转;              
  4.   
  5.             });  
  6.               
  7.             $(".box1").click(function(){  
  8.                 console.log("1")                  
  9. });  

第三种

[html] view plain copy
  1. $(".box1 a").click(function(event){           
  2. //阻止默认事件  
  3. event.preventDefault();//页面不会跳转,但是会打印出1,  
  4. });  
  5.               
  6. $(".box1").click(function(){  
  7. console.log("1");                 
  8. });  

第四种

[html] view plain copy
  1. $(".box1").click(function(){  
  2. console.log("1")  
  3. });           
  4. //阻止冒泡  
  5. $(".box1 a").click(function(event){  
  6. event.stopPropagation();              
  7. //阻止默认事件  
  8. event.preventDefault() //页面不会跳转,也不会打印出1  
  9. })  

第五种

[html] view plain copy
    1. $(".box1").click(function(){  
    2.                 console.log("1")                  
    3.             });                                   
    4. $(".box1 a").click(function(event){  
    5.                 return false;  //页面不会跳转,也不会打印出1,等于同时调用了event.stopPropagation()和event.preventDefault()  
    6.   
    7. });  

阻止事件冒泡,阻止默认事件,event.stopPropagation()和event.preventDefault(),return false的区别

标签:dem   bsp   art   auto   box   冒泡   页面跳转   UNC   www.   

原文地址:https://www.cnblogs.com/weiwei0111/p/9093536.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!