1、是的。
attachEvent method:  使用方法:bSuccess = object.attachEvent(sEvent, fpNotify)。
  Parameters
    sEvent Required. String that specifies any of the standard DHTML Events. 
    fpNotify Required. Pointer that specifies the function to call when sEvent fires. 
  Return Value
      Boolean. Returns one of the following possible values:     true The function was bound successfully to the event. 
    false The function was not bound to the event.   DOM提供的这个事件附加方式实际上是一个集合操作,我们可以多次的向同一个事件签名上attach多个事件处理函数,比如:window.attachEvent('onload', handler1);
window.attachEvent('onload', handler2);
window.attachEvent('onload', handler3);
window.attachEvent('onload', handlerN);  将会执行这个N个handler,但是不保证执行顺序。这里有个例外,attachEvent在document.body上attach事件'onload'没有效果,但是attch window对象的'onload'是正确的。根据页面初始化顺序来看,及document.body.attachEvent('onload', handler)返回true来看,这因该是IE的一个bug。2、obj.事件 = function() 既Event Property方式,当触发事件时,事件处理函数是一个无参数函数,我们只能通过event这个window的属性来读取和事件相关的信息。attachEvent方式,当事件处理函数被触发时,该函数的第一个参数arguments[0],默认是该窗口上的event。