JQueryUI resizestop事件没有用helper冒泡

时间:2011-12-10 10:14:58

标签: javascript jquery jquery-ui javascript-events backbone.js

我正在使用Backbone View事件来侦听JQueryUI的resizestop。这是worked with JQuery 1.6.4,但not with 1.7.1。这似乎只是调整大小helper的问题。

这是一个超级特定的错误,所以问题是如何调试这些东西?

修改简化测试,无需Backbone:http://jsfiddle.net/forresto/yXvmv/

1 个答案:

答案 0 :(得分:1)

奇怪的是,它只发生在jQuery 1.7.1和Backbone组合中。

我不知道根本原因是什么,但我能够通过在初始化方法中将您的调用更新为resizable来找出解决方法

this.$(".withhelper")
    .resizable({
        helper: "ui-resizable-helper",
          stop: this.resizestop
      });

以下是完整示例:http://jsfiddle.net/paulyoder/jauRx/8/