var View = Backbone.View.extend({
events: {
"keypress #editor": "updateContent",
},
updateContent: function(ev) {
# Update model
}
});
id の textarea に keypress イベントを適用しましたeditor
。最終的にこのコードは機能しますが、テキストエリアを CodeMirror で変換した後、キーを押してもイベントは発生しません。id のテキストエリアはeditor
まだ存在しますが。これはなぜですか、どうすれば修正できますか?