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

addEventListener中的第三个参 数

时间:2015-05-07 16:38:06      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:

addEventListener中的第三个参 数是useCapture, 一个bool类型。当为false时为冒泡获取(由里向外),true为为捕获 capture方式(由外向里)。

 

function addEvent(obj,sEv,fn){

  if(obj.addEventListener){

    obj.addEventListner(sEv,fn,false);

  }else{

    obj.attatchEvent(‘on‘+sEv,fn);

  }

}

 

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
*{margin:0;padding:0}

#div1{width:400px;height:400px; background:red;}
#div2{width:300px;height:300px; background:yellow;}
#div3{width:200px;height:200px; background:#000;}
#div4{width:100px;height:100px; background:#0f0;}
</style>
<script>
window.onload=function()
{
    var oDiv1=document.getElementById(div1);
    var oDiv2=document.getElementById(div2);
    var oDiv3=document.getElementById(div3);
    var oDiv4=document.getElementById(div4);    

    
    oDiv1.addEventListener(click,function(){
        alert(1);    
    },false);
    
    oDiv2.addEventListener(click,function(){
        alert(2);    
    },true);
    
    oDiv3.addEventListener(click,function(){
        alert(3);    
    },false);
    
    oDiv4.addEventListener(click,function(){
        alert(4);    
    },false);
};

</script>
</head>

<body>


<div id="div1">

<div id="div2">

<div id="div3">

<div id="div4">

</div>
</div>
</div>
</div>

</body>
</html>

 

addEventListener中的第三个参 数

标签:

原文地址:http://www.cnblogs.com/wujidns/p/4484970.html

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