0

我可以在其他方法中以这种方式处理上下文,但我不确定 .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);
4

1 回答 1

0

您是否尝试过这样

$(window).resize(function() {
    D4.prototype.resize('prototype:');
    myD4.resize('instance:')
});
于 2012-05-06T22:31:29.587 回答