我在 javascript 中的一个普通类中有一个 jquery 类。是否可以通过 jquery 类中的回调函数访问父类范围内的变量?
我的意思的一个简单例子如下所示
var simpleClass = function () {
this.status = "pending";
this.target = jqueryObject;
this.updateStatus = function() {
this.target.fadeOut("fast",function () {
this.status = "complete"; //this needs to update the parent class
});
};
};
现在在上面的示例中,回调函数尝试访问 jquery 对象的作用域。是否有办法访问父类中的 status 变量?