我正在使用 CKEDITOR 3.X。我制作了一个插件来更改字体样式(不想使用'stylesheetparser',因为我只想通过一键更改样式)
在 plugin.js 中:
exec : function( editor )
{
var style = new CKEDITOR.style(
{ styles: { 'color': 'Purple'}});
style.apply(editor.document);
}
它有效,但如果我选择包含该行最后一个字符的句子,它会删除 text 中的换行符,然后将 2 行连接在一起......
**testing line1**
testing line2
变得
**testing line1**testing line2
有什么建议可以解决这个问题吗?谢谢~~