2

我已经扩展了 jquery 以具有这样的returnPress事件处理程序:

jQuery.fn.returnPress = function(x) {
    return this.each(function() {
        jQuery(this).keypress(function(e) {
            if((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {
                x();
                return false;
            } else {
                return true;
            }
        });
    });
};

我可以在我的观点中使用上述内容:

this.$('#inputId').returnPress(function(){
    doSomething();
});

但是我想在 Backbone View 的event哈希中使用它,如下所示:

events : { "returnPress #inputId" : "doSomething" }

这可能吗?我错过了什么?

4

1 回答 1

1

事件哈希正在获取您可以绑定的事件,因此事件哈希与 doig 相同:

this.$('#inputId').on ('returnPress', function(){
  doSomething();
});
于 2012-04-26T07:22:02.153 回答