我开始使用 jQuery,但遇到以下问题:
function AClass(){
this.attribute = /*something*/
}
AClass.prototype.COMPLETE= function() {
/*FROM HERE I WANT TO ACCESS TO THE ABOVE "this.attribute"!!*/
}
AClass.prototype.doSomething = function() {
$("something").animate(..,..,.., this.COMPLETE);
}
所以,这就是我面临的问题。从那个完整的动画函数中,我想访问 AClass 的属性值。问题是在那个上下文this
中指向被动画的 DOM 元素并且不再指向调用者对象。