标签: javascript javascript-events tinymce tinymce-4 tinymce-3
自从我从TinyMCE 3升级到TinyMCE 4后,我在控制台中出现以下错误:
Deprecated TinyMCE API call: <target>.onBeforeSetContent.add(..)
我应该使用什么?
答案 0 :(得分:6)
你必须使用
editor.on('BeforeSetcontent', function(event){ console.log(event) });