在 JavaScript 中,利用实例方法作为事件处理程序的回调提出了范围挑战。 this 变量可以从表示对象实例转换为触发回调的元素。为了解决这个问题,开发人员通常采用以下方法:
function MyObject() { this.doSomething = function() { ... } var self = this; $('#foobar').bind('click', function() { self.doSomething(); // this.doSomething() would not work here }) }
虽然它起作用,但可能会引起对其可读性和效率的担忧。存在一种利用闭包概念的更优雅的解决方案。
闭包允许嵌入式函数访问在其父作用域中定义的变量,从而有效地“通道”它们。例如,考虑以下示例:
var abc = 1; // we want to use this variable in embedded functions function xyz() { console.log(abc); // it is available here! function qwe() { console.log(abc); // it is available here too! } ... }
但是,此技术对于 this 变量无效,因为它可以动态更改范围:
// we want to use "this" variable in embedded functions function xyz() { // "this" is different here! console.log(this); // not what we wanted! function qwe() { // "this" is different here too! console.log(this); // not what we wanted! } ... }
解决方案涉及为此分配一个别名,在嵌入式函数中保留其值。
var abc = this; // we want to use this variable in embedded functions function xyz() { // "this" is different here! --- but we don't care! console.log(abc); // now it is the right object! function qwe() { // "this" is different here too! --- but we don't care! console.log(abc); // it is the right object here too! } ... }
采用此技术可确保事件处理程序内的适当范围和清晰度,提供更强大和可维护的方法。
以上是如何确保 JavaScript 中事件处理程序中实例方法的正确作用域?的详细内容。更多信息请关注PHP中文网其他相关文章!