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