无法在window.resize()中访问对象的上下文

时间:2012-05-06 22:07:10

标签: javascript

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

1 个答案:

答案 0 :(得分:0)

您是否尝试过like this

$(window).resize(function() {
    D4.prototype.resize('prototype:');
    myD4.resize('instance:')
});