var View = Backbone.View.extend({
events: {
"keypress #editor": "updateContent",
},
updateContent: function(ev) {
# Update model
}
});
我已经在 id 的 textarea 上应用了一个已应用的按键事件editor
。最终这段代码可以工作,但是在使用 CodeMirror 转换 textarea 之后,按键不会触发事件。尽管带有 id 的 textareaeditor
仍然存在。为什么会这样,我该如何解决?