如何在CkEditor的替换功能中禁用插件?

时间:2015-02-27 14:19:54

标签: javascript jquery ckeditor

我想在某些CKEditor textareas上禁用图片上传功能。我不希望通过config.js文件执行此操作,因为它将禁用所有textareas。我怎么能用.replace方法做到这一点?

示例:

CKEDITOR.replace("meTextarea", {
   // what should I write here to disable the plugin?
});

提前谢谢

2 个答案:

答案 0 :(得分:0)

您只需将选项传递给CKEDITOR.replace()功能:

CKEDITOR.replace('meTextarea', {
   removePlugins: 'filebrowser'
});

在此处详细了解如何设置配置:Setting Configuration

答案 1 :(得分:0)

如果无法通过其给定功能禁用它,请在CSS中尝试使用此功能

.ck-file-dialog-button
{
  display:none !important;
}

这将隐藏图像上传按钮,而不会干扰您的用户界面。

.ck-dropdown{
    display:none !important;
}