1

每当 tinymce 窗口关闭时,我想通过 ajax 重新加载页面中的某些元素,但我找不到对我可以使用的任何事件调用的任何引用。这个页面提到了一个 onClose 事件,但我在 tinymce api 中找不到它的页面。

4

1 回答 1

0

不,没有 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);
      });
   }
});
于 2013-01-14T08:28:35.123 回答