如何为一个微小的mce调用模糊事件的函数

时间:2010-07-20 10:25:29

标签: tinymce

我想编写保存微小mce内容的函数并销毁当mce失去焦点时将调用的微小mce的当前实例。

1 个答案:

答案 0 :(得分:0)

这样的事情应该有效:

// Code to be inserted into the init function of a plugin
ed.onDeactivate.add(function(ed) {
    ed.save();  // or whatever you want to do to save the editor content
    ed.remove(); // removes tinymce instance
});