如何删除CKEditor 4中的pickimage按钮

如何删除CKEditor 4中的pickimage按钮,ckeditor,ckeditor4.x,Ckeditor,Ckeditor4.x,我可以从工具栏中删除每个按钮,但不能删除此imagepicker按钮 我试着用removePlugins:“pickimage,image”和removeButtons:“image”以及配置中的一些变体来删除它,在这些变体中我可以删除其他按钮 任何提示或帮助都将不胜感激 此按钮: 在javascript代码中尝试此操作。 <script type="text/javascript"> $(document).ready(function () {

我可以从工具栏中删除每个按钮,但不能删除此imagepicker按钮

我试着用removePlugins:“pickimage,image”和removeButtons:“image”以及配置中的一些变体来删除它,在这些变体中我可以删除其他按钮

任何提示或帮助都将不胜感激

此按钮:

在javascript代码中尝试此操作。

<script type="text/javascript">
            $(document).ready(function () {
                 CKEDITOR.config.removeButtons = 'Image'; 
            });

  </script>

$(文档).ready(函数(){
CKEDITOR.config.removeButtons='Image';
});
打开链接并检查它


对不起,我不太清楚,我只能编辑ckeditor.config.overlayed.json来配置富格文本编辑器。不要编辑脚本放在页面上方的任何文件,就这样。这是不可能的,因为我在Hippo CMS中使用了ckeditor,并且必须为所有文档配置它。遗憾的是,即使JS代码也不起作用,按钮只是停留好了,可惜没有。这是我到目前为止的代码:
removePlugins:'sourcearea,codemirror,youtube,showblocks,specialchar,copyformat,removeformat,tabletools,tableresize,tableselection',removeButtons:'Strike,Anchor,Styles,Undo,Redo,JustifyCenter,JustifyLeft,JustifRightrifRight,JustifBlock,Indent,Outdent,Format,Table,Maximize,Image'
console.log(CKEDITOR.plugins)
查看加载了哪些插件(查看哪些插件的名称中有“image”一词,如“easyimage”)感谢您的想法,但image的唯一功能是image2,如果我通过removePlugins禁用它,它不会改变任何东西。