1
我想編寫函數,保存微小mce的內容並銷燬當mce失去焦點時將被調用的小型mce的當前實例。如何調用模糊事件的函數爲一個微小的mce
我想編寫函數,保存微小mce的內容並銷燬當mce失去焦點時將被調用的小型mce的當前實例。如何調用模糊事件的函數爲一個微小的mce
像這樣的東西應該工作:
// 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
});