我已经扩展了 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" }
这可能吗?我错过了什么?