我使用内联模式的TinyMCE插件。我想要做的是获取编辑器关闭后编辑区域的内容。这就是我现在所拥有的:
long getScore(Player p) {
return map.get(p).get();
}
然而,这并没有记录任何东西。有什么想法吗?
答案 0 :(得分:1)
每次离开编辑器时,它都会触发blur
事件(https://www.tinymce.com/docs/advanced/events/#blur)...您可以在TinyMCE配置中捕获它:
tinymce.init({
selector: '#my_div",
...
setup: function (editor) {
editor.on('blur', function (e) {
console.log('Editor was blurred!');
// Do what you want when the editor is blurred here
console.log(editor.getContent()); //get the content from the editor
});
}
});