如何使用基本工具栏显示ckeditor

时间:2012-11-21 17:43:51

标签: ckeditor

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

http://ckeditor.com/demo

选中自定义工具栏标签,查看第一个包含非常基本类型工具栏的示例,如何显示?

这是我的代码

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

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

5 个答案:

答案 0 :(得分:47)

如果您使用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']
] ;

答案 1 :(得分:17)

如果您将前两个答案放在一起,您将获得完整的解决方案。第一件事是在&#39; config.js&#39;中添加选项。在你的“ckeditor”中提交文件文件夹中。

 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']
        ];
};

然后将通话添加到&#39;基本&#39;在HTML文件中配置。

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

这应该就是您所需要的,显然不要忘记拨打&#39; ckeditor.js&#39;文件在你的html文件中。

答案 2 :(得分:13)

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

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

description正在引用您网站上编辑器的id

有趣的链接:

答案 3 :(得分:0)

2018年更新:

CKEditor的那些有用的捣蛋只是已经消失并创建了一个在线编辑器,您可以根据自己的心灵内容进行自定义!这是一个夜间构建,因此静态URL对您没用 - 从http://nightly.ckeditor.com导航到基本配置程序选项,然后选择 TOOLBAR CONFIGURATOR 按钮。

将生成的内容复制并粘贴到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';
};

答案 4 :(得分:0)

我也被困在这个问题上,但是经过如此多的尝试,我终于解决了我的问题:

在ckeditor.rb中使用它:-

Ckeditor.setup做| config |   需要“ ckeditor / orm / active_record”   config.cdn_url =“ //cdn.ckeditor.com/4.12.1/ 完整 /ckeditor.js” 结束

您还可以根据需要将其完全更改为基本,标准或经典

好运