我想编写保存微小mce内容的函数并销毁当mce失去焦点时将调用的微小mce的当前实例。
答案 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
});