var person = { | |
firstName: 'Hoang', | |
lastName: 'Pham', | |
showName: function() { | |
console.log(this.firstName + ' ' + this.lastName); | |
} | |
}; | |
$('button').click(person.showName); //showName truyền vào như callback, ở đây this chính là button | |
// Dùng anonymous function | |
$('button').click(function(){ person.showName() }); | |
// Dùng bind | |
$('button').click(person.showName.bind(person)); //this ở đây vẫn là object person |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment