TinyMCE 4 - 纯文本/条带HTML标签按钮

时间:2016-06-27 14:45:56

标签: javascript html tinymce tinymce-4

有没有办法彻底剥离其样式和HTML标记的选定元素?

因此<p>Text</p>将成为Text

在格式下拉列表中使用自定义按钮(功能)还是“纯文本”样式?

2 个答案:

答案 0 :(得分:3)

selection.getContent({format:&#39; text&#39;});

selection.getContent({format:&#39; html&#39;});

答案 1 :(得分:3)

感谢Anub的指导,我自己设法做到了。

// Store the current selections string/value in a variable and strip it's tags
var node = tinymce.activeEditor.selection.getContent({ format : 'text' });

// Replace the selected content with the stripped out content
tinymce.activeEditor.selection.setContent(node);