我试图移植(https://github.com/NYTimes/iceonEvent(...)
)到 TinyMCE 4 的插件需要在 MCE 编辑器处理并在 3.5.8 中使用但需要之前访问按键事件被迁移到更像on('event')
tinymce 4的东西,但是没有明显的替代方案。
在微型 MCE 3.5.8 中,我有
ed.onEvent.add(function(ed, e) {
return changeEditor.handleEvent(e);
});
但我需要更多类似的东西
ed.on('event', function(e) {
return changeEditor.handleEvent(e);
});
然而,ed.on('event',...)
在tinymce 4中似乎不存在。
它需要能够在 keydown、keyup 和 keypress 的任何其他事件处理程序之前捕获删除键。