前端:常见的事件兼容IE问题处理

1.注册事件
IE 事件模型使用 attachEvent() 方法注册事件
DOM 事件模型使用 addEventListener() 方法注册事件
兼容处理

$.addEvent = function(obj, type, fn) {
  if (obj.addEventListener)
    obj.addEventListener(type, fn, false);
  else
    obj.attachEvent('on' + type, fn);
};

$.addEvents = function(obj, typeObj) {
  for(var type in typeObj) {
    $.addEvent(obj, type, typeObj[type]);
  }
};

2.获取事件对象
IE模型用window.event

get: function(e, win) {
    win = win || window;
    return e || win.event;//兼容写法
  }

3.阻止冒泡/捕获
IE模型用we.cancelBubble/e.returnValue

 stop: function(e) {    //兼容
    if (e.stopPropagation) e.stopPropagation();
    e.cancelBubble = true;
    if (e.preventDefault) e.preventDefault();
    else e.returnValue = false;
  }

你可能感兴趣的:(前端:常见的事件兼容IE问题处理)