Ckeditor 从工具栏中删除上载按钮

Ckeditor 从工具栏中删除上载按钮,ckeditor,ckfinder,Ckeditor,Ckfinder,我已将ckeditor与ckfinder集成。我想从工具栏中删除上载按钮。从ckeditor单击图像/链接时,将打开一个文件浏览器,然后单击“浏览服务器”按钮。当您可以浏览文件夹时,它会打开另一个浏览器。在顶部有一个工具栏部分,我们可以在其中找到“设置、帮助和上载”按钮。我必须移除上传按钮。我正在使用javascript。请帮助使用这种自定义工具栏的方法 editor_edit = CKEDITOR.replace( 'e_notification', { uiColor: '#888888',

我已将ckeditor与ckfinder集成。我想从工具栏中删除上载按钮。从ckeditor单击图像/链接时,将打开一个文件浏览器,然后单击“浏览服务器”按钮。当您可以浏览文件夹时,它会打开另一个浏览器。在顶部有一个工具栏部分,我们可以在其中找到“设置、帮助和上载”按钮。我必须移除上传按钮。我正在使用javascript。请帮助使用这种自定义工具栏的方法

editor_edit = CKEDITOR.replace( 'e_notification', {
uiColor: '#888888',
height: '250px',
filebrowserBrowseUrl : 'http://localhost/SUServer1/ckfinder/ckfinder.html',
filebrowserImageBrowseUrl : 'http://localhost/SUServer1/ckfinder/ckfinder.html?type=Images',
filebrowserFlashBrowseUrl : 'http://localhost/SUServer1/ckfinder/ckfinder.html?type=Flash',
filebrowserUploadUrl : 'http://localhost/SUServer1/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files',
filebrowserImageUploadUrl : 'http://localhost/SUServer1/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images',
filebrowserFlashUploadUrl : 'http://localhost/SUServer1/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash',
filebrowserWindowWidth : '1000',
filebrowserWindowHeight : '700',
toolbar :
[
    { name: 'document', items : [ 'Source','-','Templates' ] },
    { name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
    '/',
    { 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','Table','HorizontalRule','Smiley','SpecialChar','Iframe' ] },
    '/',
    { name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] },
    { name: 'colors', items : [ 'TextColor','BGColor' ] }
]
});

要删除ckfinder上传按钮,则需要在ckfinder config.js中添加一些代码

CKFinder.config.toolbar_Full = [['Refresh', 'Settings', 'Maximize']];
希望它能在main config.js(ckfinder 3根文件夹)上正常工作:


我用谷歌搜索了这个,但我没有找到任何答案。啊,这不是直接的CKEditor工具栏。我明白了。在Ckeditor.js中编写您自己的工具栏,而不在该工具栏中添加上载Id。看到了吗
config.removeModules = 'UploadFileButton';