首页 > 其他 > 详细

事件捕获_事件冒泡

时间:2014-02-27 00:11:31      阅读:456      评论:0      收藏:0      [点我收藏+]

就是事件冒泡和事件捕获的demo了,很简单的

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
.p{
    width:500px;
    height:500px;
    background:#CCF;
}
.s{
    width:300px;
    height:300px;
    background:#fff;
}
.min{
    width:100px;
    height:100px;
    background:#063;
}
</style>
</head>
<body>
<div class="p">
    <div class="s">
        <div class="min"></div>
    </div>
</div>
<script>
 window.alert = function (msg) {
    console.log(msg);
  };
  var p = document.getElementsByClassName(‘p‘)[0];
  var s = document.getElementsByClassName(‘s‘)[0];
  p.addEventListener(‘click‘, function (e) {
    alert( (e.target === e.currentTarget) + ‘ ‘+ e.eventPhase)
    alert(‘父节点捕获11‘);
  }, true);
  p.addEventListener(‘click‘, function (e) {
    alert( (e.target === e.currentTarget) + ‘ ‘+ e.eventPhase)
    alert(‘父节点冒泡‘)
  }, false);
   
  s.addEventListener(‘click‘, function (e) {
    alert( (e.target === e.currentTarget) + ‘ ‘+ e.eventPhase)
    alert(‘子节点捕获11‘);
  }, true);
  s.addEventListener(‘click‘, function (e) {
    alert( (e.target === e.currentTarget) + ‘ ‘+ e.eventPhase)
    alert(‘子节点冒泡‘)
  }, false);
  /*e.target时指向当前目标,e.currentTarget是指向点击的this*/
</script>
</body>
</html>

  

事件捕获_事件冒泡,布布扣,bubuko.com

事件捕获_事件冒泡

原文:http://www.cnblogs.com/diligenceday/p/3568460.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!