【发布时间】:2013-06-28 17:07:02
【问题描述】:
我正在尝试将 (https://github.com/NYTimes/ice) 移植到 TinyMCE 4 的插件需要在 MCE 编辑器处理它之前访问按键事件并在 3.5.8 中与 onEvent(...) 一起使用,但需要迁移类似于 tinymce 4 中的 on('event'),但是没有明显的替代方案。
在微型 MCE 3.5.8 中我有
ed.onEvent.add(function(ed, e) {
return changeEditor.handleEvent(e);
});
但我需要更多类似的东西
ed.on('event', function(e) {
return changeEditor.handleEvent(e);
});
但是,tinymce 4 中似乎不存在 ed.on('event',...)。
它需要能够在 keydown、keyup 和 keypress 的任何其他事件处理程序之前捕获删除键。
【问题讨论】: