ckeditor向我展示双式工具栏

时间:2013-10-16 08:07:13

标签: ckeditor

我有这个配置:

$(document).ready(function(){  
    CKEDITOR.replace('editor', {
        language : 'ru',
        toolbarGroups : [
            { name: 'history',   groups: [ 'redo', 'undo' ] },
            { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
            { name: 'paragraph',   groups: [ 'list', 'indent', 'align' ] },
            { name: 'links' },
            { name: 'styles', items: [ 'Font', 'FontSize' ] },
        ]
    });
});

但如果我尝试在'styles'中设置execatly项目,ckeditor会显示我的双工具栏样式: enter image description here

1 个答案:

答案 0 :(得分:0)

您将toolbarGroupstoolbar设置混淆了。工具栏组应仅定义组,而不是像您在最后一组中那样的项目:

{ name: 'styles', items: [ 'Font', 'FontSize' ] },

将此行替换为:

{ name: 'styles' },