码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript关于attachEvent和addEventListener区别与兼容写法

时间:2014-09-19 13:23:35      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   使用   java   ar   div   

Mozilla中:

addEventListener的使用方式:

target.addEventListener(type, listener, useCapture);

target: 文档节点、document、window 或 XMLHttpRequest。
type: 字符串,事件名称,不含“on”,比如“click”、“mouseover”、“keydown”等。
listener :实现了 EventListener 接口或者是 JavaScript 中的函数。
useCapture :是否使用捕捉,一般用 false 。例如:document.getElementById(“testText”).addEventListener(“keydown”, function (event) { alert(event.keyCode); }, false);

 

IE中:

target.attachEvent(type, listener);
target: 文档节点、document、window 或 XMLHttpRequest。
type: 字符串,事件名称,含“on”,比如“onclick”、“onmouseover”、“onkeydown”等。
listener :实现了 EventListener 接口或者是 JavaScript 中的函数。 例如:document.getElementById(“txt”).attachEvent(“onclick”,function(event) {alert(event.keyCode);});

 

 

兼容的写法:

     if (window.attachEvent) {
     
    obj.attachEvent("onclick", function() {alert(even.innerHTML) });//ie
    }
    else {
    obj.addEventListener("click", function() { alert(even.innerHTML) }, false); //火狐
    }

 

Javascript关于attachEvent和addEventListener区别与兼容写法

标签:style   blog   http   color   io   使用   java   ar   div   

原文地址:http://www.cnblogs.com/sunjar/p/3981134.html

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