I am trying to create a simple fallback function, which will make sure addeventlistener will work in IE versions older than 9.

So far i have this

if (!Element.prototype.addEventListener)
{ 
     Element.prototype.addEventListener =
           function(ev, fc)
            {
                xxx.attachEvent('on' + ev, fc);
            }
}

The problem is, that I don't know how to get the reference to the element to which the event is being attached to. (the xxx)

Any advice is appreciated.

有帮助吗?

解决方案

That's​​​​​​​​​​​​​​​​​ this.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top