19

class="ckeditor"我正在使用方式在我的网页中显示 ckeditor 。如何配置我的 ckeditor 以仅显示基本工具栏。在这里,我找到了显示基本工具栏的示例页面,但没有从文档中获取如何显示它。

http://ckeditor.com/demo

检查自定义工具栏选项卡并查看第一个具有非常基本类型的工具栏的示例,我该如何显示它?

这是我的代码

<body>
    <textarea class="ckeditor" id="description" rows="5" cols="15"></textarea>
</body>

我想为我网站的所有 ckeditor 实例显示基本工具栏。

4

5 回答 5

49

如果你使用 Basic 它会显示所有工具栏,所以使用这个

CKEDITOR.config.toolbar = [
   ['Styles','Format','Font','FontSize'],
   '/',
   ['Bold','Italic','Underline','StrikeThrough','-','Undo','Redo','-','Cut','Copy','Paste','Find','Replace','-','Outdent','Indent','-','Print'],
   '/',
   ['NumberedList','BulletedList','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
   ['Image','Table','-','Link','Flash','Smiley','TextColor','BGColor','Source']
] ;
于 2013-04-23T18:01:42.050 回答
20

如果将前面的两个答案放在一起,您将获得完整的解决方案。首先是在 'ckeditor' 文件夹中的 'config.js' 文件中添加选项。

 CKEDITOR.editorConfig = function( config ) {
    config.skin = 'bootstrapck';
    // Define changes to default configuration here. For example:
    // config.language = 'fr';
    // config.uiColor = '#AADC6E';
    config.toolbar_Full =
        [
            { name: 'document', items : [ 'Source','-','Save','NewPage','DocProps','Preview','Print','-','Templates' ] },
            { name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
            { name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','SpellChecker', 'Scayt' ] },
            { name: 'forms', items : [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton',
                'HiddenField' ] },
            '/',
            { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },
            { name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','CreateDiv',
                '-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl' ] },
            { name: 'links', items : [ 'Link','Unlink','Anchor' ] },
            { name: 'insert', items : [ 'Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe' ] },
            '/',
            { name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] },
            { name: 'colors', items : [ 'TextColor','BGColor' ] },
            { name: 'tools', items : [ 'Maximize', 'ShowBlocks','-','About' ] }
        ];

    config.toolbar_Basic =
        [
            ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','About']
        ];
};

然后将调用添加到 HTML 文件中的“基本”配置。

            <textarea id="ckeditor"></textarea>
            <script type="text/javascript">
                CKEDITOR.replace( 'ckeditor',
                        {
                            toolbar : 'Basic', /* this does the magic */
                            uiColor : '#9AB8F3'
                        });
            </script>

这应该是您所需要的,显然不要忘记在您的 html 文件中调用“ckeditor.js”文件。

于 2015-04-24T00:52:51.973 回答
14

您需要在启动时设置特定配置。

<script type="text/javascript">
    CKEDITOR.replace( 'description',
    {
        toolbar : 'Basic', /* this does the magic */
        uiColor : '#9AB8F3'
    });
</script>

description指的是id您网站上的编辑器。

有趣的链接:

于 2012-11-21T17:49:39.707 回答
2

2018 年更新:

CKEditor的那些乐于助人的人只是创建了一个在线编辑器,您可以根据自己的内心内容进行自定义!这是一个夜间构建,因此静态 URL 对您没有用 - 从http://nightly.ckeditor.com导航到基本配置器选项,然后选择工具栏配置器按钮。

将生成的内容复制并粘贴到 ivoryckeditor 包的 config.js 文件(Web 文件夹)中,它应该可以在不需要任何其他文件更改的情况下工作。

我构建了以下简单布局来显示剪切和粘贴操作,并且:

CKEDITOR.editorConfig = function( config ) {
config.toolbarGroups = [
    { name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
    { name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
    { name: 'editing', groups: [ 'find', 'selection', 'spellchecker', 'editing' ] },
    { name: 'forms', groups: [ 'forms' ] },
    { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
    { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi', 'paragraph' ] },
    { name: 'links', groups: [ 'links' ] },
    { name: 'insert', groups: [ 'insert' ] },
    { name: 'styles', groups: [ 'styles' ] },
    { name: 'colors', groups: [ 'colors' ] },
    { name: 'tools', groups: [ 'tools' ] },
    { name: 'others', groups: [ 'others' ] },
    { name: 'about', groups: [ 'about' ] }
];

config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript';
};
于 2018-01-15T22:55:58.427 回答
0

我也陷入了这个问题,但经过多次试验,我得到了解决问题的方法:

在 ckeditor.rb 中使用它:-

ckeditor.setup 做 |config| 需要 "ckeditor/orm/active_record" config.cdn_url = "//cdn.ckeditor.com/4.12.1/ full /ckeditor.js" 结束

您还可以根据您的要求将完整更改为基本、标准或经典

祝你好运

于 2019-10-01T14:26:14.657 回答