我试图从回调中返回 this,但我总是不确定。
这是剪断的
create: function(currentView, data){
var itsMe = this;
this.thumbsWrapper = this.templates.wrapper().hide();
currentView.append(this.thumbsWrapper);
this.thumbsWrapper.fadeIn("fast", function(){
return itsMe;
});
},
var l = list().create(currentView); //need teh return that i can use chaining
var l 现在是未定义的,如果我使用带有回调的淡入淡出...如果我不使用带有回调的淡入淡出它返回 obj
有人知道为什么吗?