在TinyMCE 4中,不推荐使用editor.onBeforeSetContent.add(),而是使用什么?

时间:2014-05-07 08:21:20

标签: javascript javascript-events tinymce tinymce-4 tinymce-3

自从我从TinyMCE 3升级到TinyMCE 4后,我在控制台中出现以下错误:

Deprecated TinyMCE API call: <target>.onBeforeSetContent.add(..) 

我应该使用什么?

1 个答案:

答案 0 :(得分:6)

你必须使用

editor.on('BeforeSetcontent', function(event){
  console.log(event)
});