码迷,mamicode.com
首页 > Web开发 > 详细

js 事件

时间:2017-09-05 19:06:05      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:window   ons   tac   listener   length   blog   事件   pre   containe   

1. 事件冒泡 :  

// 分别在 >= ie 9 和 < ie9 下测试

‘use strict‘;
var arr = [document, window, document.documentElement, document.body, document.querySelector(‘.container‘)];
while (arr.length){
  var e = arr.pop(arr);
  !function(e){
    if (e.addEventListener){
      e.addEventListener(‘click‘, function (event) {console.log(e.constructor.name);});
    }else{
      e.attachEvent(‘onclick‘, function (event) {console.log(e.constructor.name);});
    }
  }(e)
}

 

1. ie9 支持 elementTarget.addeventListener ,ie 9 以下不支持。

2. 默认都是事件冒泡的方式

js 事件

标签:window   ons   tac   listener   length   blog   事件   pre   containe   

原文地址:http://www.cnblogs.com/Tachi/p/7479874.html

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