我想检索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' }));
答案 0 :(得分:2)
这是使用jQuery的简单方法:
var ed = tinymce.get('your_editor_id');
var content = $(ed.getBody).html();
请注意,内容中可能存在一些内部标记(跨度)。