CKEDITOR:我的工具栏中没有显示某些图标

我想问一下我得到的这个小但非常重要的问题:(我已经下载了CKeditor 4.3.2,相信我一直在互联网上寻找这个ssooooooo很久没有任何成功.)

我试图在我的工具栏中显示“笑脸”图标,但它没有显示它,并且发生在其他一些例如“保存”,“打印”,“新页面”等,我不知道为什么.此外,当我插入一个视频的链接不显示,以便人们观看它一旦发布…一切正常与其他人工作,但不是我刚才提到的这些!请!谢谢你的答复!

PS:我在一些论坛上发现这些版本4.3.2中的图标已经改变了他们的名字,你认为这是原因吗?

这是我的代码:

CKEDITOR.editorConfig = function( config )
{   
uiColor: '#14B8C4',
config.toolbar = 'Full';

  `config.toolbar_Full =
[
{ name: 'document', items : [ 'Source','-', 'Save','NewPage','DocProps','Preview','Print','-','Templates', 'Emoticons' ] },//solo Source
{ name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo', 'clipboard' ] },//BIen
{ name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','SpellChecker', 'Scayt', 'TextColor' ] },//Solo SpellChecker
{ name: 'forms', items : [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', //nada
    'HiddenField' ] },
'/',
{ name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },//Todas
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','CreateDiv', 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl' ] },//Todas hasta Bloquiote
{ name: 'links', items : [ 'Link','Unlink','Anchor' ] }, //Todas
{ name: 'insert', items : [ 'Image','Flash','Table','HorizontalRule',"Smiley",'SpecialChar','PageBreak','Iframe' ] }, //Falta flash, smiley, ifame
'/',
{ name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] }, 
{ name: 'colors', items : [ 'TextColor','BGColor' ] }, //ninguno
{ name: 'tools', items : [ 'Maximize', 'ShowBlocks','-' ] }
];

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

`

最佳答案 最后我得到了非常简单的解决方案.但是,在我告诉你解决方案之前,我会告诉你原因:

> CKEditor已更新.因此,一些插件的名称已被更改,您不会找到与以前相同的名称.

解决方案是:转到Download CKEditor with plugins selected by you,在那里你将找到三个不同的软件包下载,下面还有另一个软件包:“或者让我自定义我的CKEditor”点击它并“下载并自定义编辑器”.

之后,您将被重定向到另一个页面,在该页面上您将看到两列,左侧显示默认包附带的所有插件(如果您不想要它们,也可以删除一些插件)和右栏显示了一些可以添加到包中的插件().

希望您觉得这个解决方案很有用

点赞