-3

如何从 CKEditor 文本编辑器中删除某些功能?我只需要粗体等基本功能。

4

2 回答 2

1

要从编辑器中删除功能,您应该在配置中调整config.plugins ,例如:

config.plugins = 'usefulPlugin, anotherUsefulPlugin, ...'

另一种可能性是从当前配置中删除不需要的插件:

config.removePlugins = 'unwantedPlugin, anotherUnwantedPlugin, ...'

此外,您可以使用官方的 CKEditor 构建器并通过选择您认为在 GUI 中有用的东西来创建自己的编辑器包。

毕竟,您可以调整工具栏。请注意,更改工具栏不会影响在您的编辑器实例中运行的功能 - 它们仍处于加载状态,并且正在工作,但无法通过工具栏访问。如果你不控制它,这可能是一个麻烦制造者。

于 2013-06-12T09:52:16.857 回答
-2

下面是CKEditor的一些基本设置

config.toolbar = 'Full';

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']
];
于 2013-06-12T09:29:21.303 回答