2

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

已弃用的 TinyMCE API 调用:.onBeforeSetContent.add(..)

我应该改用什么?

4

1 回答 1

6

你将不得不使用

editor.on('BeforeSetcontent', function(event){
  console.log(event)
});
于 2014-05-07T09:06:51.233 回答