4
How can I access the this
concerning my object, when it calls an event? When the event is called, the this
becomes the event itself, the window.event
Ex:
function Foo() {
this.bar = function() {
console.log('Hi!');
}
document.onkeypress = function(e) {
// Aqui, o "this" não é mais o objeto Foo, mas sim o "e" ou "window.event"
this.bar();
// Erro: this.bar não está definido...
}
}
How can I access my object from inside the callback
of the event keypress
?