总结事件绑定的区别

addEventListener()

attachEvent()

相同点:都可以为元素绑定事件

不同点:1.方法名不一样

    2.参数个数不一样

    3.addEventListener  谷歌,火狐 IE11支持,IE8不支持

     attachEvent    谷歌,火狐  IE11不支持,IE8支持

    4.this不同,addEventListener 中的this是当前绑定事件的对象

          attachEvent中的this 是window

    5.addEventListener  中的事件类型(事件名字)没有on

       attachEvent   中的的时间类型(时间名字)有on

猜你喜欢

转载自www.cnblogs.com/bydzhangxiaowei/p/10848229.html