如何使用调色板更改CKEditor中容器的背景颜色

时间:2016-10-19 12:28:26

标签: javascript ckeditor

如何使用颜色列表中的内联ckeditor更改容器的颜色。我知道我们有“colorbutton”插件来更改块元素的文本颜色和背景颜色,但我需要更改整个容器颜色。 Here is the image about my requirement

1 个答案:

答案 0 :(得分:0)

修改了colorbutton按钮ckeditor插件。 在renderColors()方法中添加以下条件。

if(type != 'back'){
 editor.applyStyle( new CKEDITOR.style( colorStyle, { color: color } ) );   
}else{
  editor.container.$.style.backgroundColor=color;
}