在CKEditor上转换工具栏的问题

时间:2013-07-25 12:12:36

标签: javascript jquery ckeditor wysiwyg

这是我显示CKEditor4的代码:

<script type="text/javascript">
CKEDITOR.replace( 'description', {
    toolbar: 'Basic'
});
</script>

这很好用,并提供以下选项:

  

粗体,斜体,有序列表,无序列表,缩进,突出,链接,   取消关联,关于CKEeditor

我的问题是,如果没有链接到外部配置文件,并使用上面的代码,我怎么能这样做,所以我只有以下选项:

  

粗体,斜体,无序列表,有序列表

这是我试过的代码打破了编辑器(它没有显示):

<script type="text/javascript">
CKEDITOR.replace( 'description', {
    toolbar = [
        { name: 'basicstyles', items: [ 'Bold', 'Italic' ] }
        { name: 'paragraph',   groups: [ 'list'] },
    ];
});
</script>

有人能告诉我哪里出错吗?

1 个答案:

答案 0 :(得分:1)

你错过了数组中对象之间的分号。

您可以使用.removeButtons属性删除不必要的按钮:

config.removeButtons = 'Underline,JustifyCenter';

使用:

CKEDITOR.replace( 'description', { toolbar: 'Basic', removeButtons: 'Bold' });