隐藏工具栏并显示颜色

时间:2013-08-13 10:17:33

标签: ckeditor

我有问题。我想在没有工具栏的情况下显示CKEditor,并且仍然保留颜色。这是我的代码。

$(document).ready(function() {
    var textAreaName = 'description';
    CKEDITOR.replace( textAreaName, {
        removePlugins: 'toolbar,elementspath',
        readOnly: true
    } ) ;

    var oCKeditor = CKEDITOR.instances[textAreaName];
});

问题是文字颜色没有显示。似乎CKEditor也禁用了颜色。

2 个答案:

答案 0 :(得分:1)

假设(因为它仍然不清楚)你想在编辑器的内容中保留文本颜色(BTW。编辑器的内容不是使用textarea呈现的 - 它仅用于更容易的数据提交)这是一个解决方案:< / p>

config.extraAllowedContent = 'span{!color}';

这将允许具有span样式的color元素。详细了解Advanced Content Filter

答案 1 :(得分:0)

使用此config.uiColor = '#AADC6E';

其中config是该组件的对象。