我可以在其他方法中以这种方式处理上下文,但我不确定 .resize() 有什么不同,或者为什么我无法在上下文中传递。
D4.prototype.resize = function() {
var that = this;
that.containerBound = that.getBound(that.containerId);
// that is referring to the DomWindow and not D4
};
$(window).resize(D4.prototype.resize);