每当 tinymce 窗口关闭时,我想通过 ajax 重新加载页面中的某些元素,但我找不到对我可以使用的任何事件调用的任何引用。这个页面提到了一个 onClose 事件,但我在 tinymce api 中找不到它的页面。
问问题
659 次
不,没有 onClose 事件,但你是我的用户onRemove事件。这是此配置的初始化代码
// Adds an observer to the onRemove event using tinyMCE.init
tinyMCE.init({
...
setup : function(ed) {
ed.onRemove.add(function(ed) {
console.debug('Editor was removed: ' + ed.id);
});
}
});