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

事件冒泡 比bubble

时间:2018-07-13 20:21:28      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:focus   key   input   冒泡   error   func   auth   utf-8   value   


冒泡的概念就是 当子元素触发事件的时候 相应的祖宗十八代素也会触发相同的事件
(前提父元素也添加了一样的事件)
eg:儿子 有一个onclick 祖宗十八代 也有onclick
当点击儿子的时候 祖宗十八代的点击事件也会被触发
有时候这种情况会导致很多问题 所以要阻止冒泡
只有被点击的元素才触发事件
不是所有的事件都会冒泡
onblur onfocus onload onerror 没有

其实事件的触发一共有三个过程 : 捕获阶段--->处于目标阶段---->冒泡阶段

标准浏览器冒泡顺序 子元素-->父辈-->body-->document--->window
  IE 子元素-->父辈-->body-->document

接下来上代码 很容易 做一个兼容处理就好了
<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>阻止冒泡</title>
 </head>
 <body>
     <input type="button"  id="cancelBubble" value="取消冒泡"/>
    <script type="text/javascript">
          var btn=document.getElementById("cancelBubble");
          document.onclick=function(){
            alert("冒泡");
          }
          btn.onclick=function(event){
          var event=event||window.event;//兼容
          if(event && event.stopPropagation){
               
               event.stopPropagation();
          
          }
          else{
              //IE 678
             event.cancelBubble=true;
          }
           alert("没有冒泡");
          
          }
    </script>
 </body>
</html>

 

事件冒泡 比bubble

标签:focus   key   input   冒泡   error   func   auth   utf-8   value   

原文地址:https://www.cnblogs.com/liveoutfun/p/9306834.html

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