当前位置:  开发笔记 > 编程语言 > 正文

在jQuery按钮回调中获得正确的"this"

如何解决《在jQuery按钮回调中获得正确的"this"》经验,为你挑选了1个好方法。

我有一节课:

function RustEditor() {

this.init = function() {

    var saveButton = this.container.find("button.saveButton");
    saveButton.click(function(){this.save();});

};
...

当我单击按钮时,它会抱怨this.save不是一个函数.这是因为"this"不是指这里的RustEditor实例,而是指按钮.我可以在回调闭包内使用什么变量来指向RustEditor的实例?我可以使用rust.editor(它在全局范围内的名称),但这是臭臭的代码.



1> seth..:

通常的做法是将this值括起来:

 function RustEditor() {

 this.init = function() {
    var self = this;

    var saveButton = this.container.find("button.saveButton");
    saveButton.click(function(){self.save();});

 };

根据tvanfosson的建议更新: this在调用事件处理程序时获取反弹,因此您需要在创建对象时使用将在闭包中保留该引用的变量捕获对类的引用.

推荐阅读
我我檬檬我我186
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有