有没有办法彻底剥离其样式和HTML标记的选定元素?
因此<p>Text</p>
将成为Text
。
在格式下拉列表中使用自定义按钮(功能)还是“纯文本”样式?
答案 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);