我想检索 tinymce 区域的 html 内容,但没有应用清理和过滤器。我怎样才能做到这一点?例如,使用此调用从 html 源代码中删除了换行符,但我想保留它们。
http://www.tinymce.com/wiki.php/API3:method.tinymce.Editor.getContent
我一直在 chrome 中测试的函数调用:
console.log(tinyMCE.activeEditor.getContent({ format: 'raw' }));
console.log(tinyMCE.activeEditor.getContent({ format: 'text' }));