如何在 CkEditor 的替换功能中禁用插件?
How to disable a plugin in the replace function of CkEditor?
我想在某些 CKEditor textareas
上禁用图像上传。我不想通过 config.js 文件执行此操作,因为它将对所有 textareas
禁用。如何使用 .replace 方法执行此操作?
示例:
CKEDITOR.replace("meTextarea", {
// what should I write here to disable the plugin?
});
提前致谢
您可以简单地将选项传递给 CKEDITOR.replace()
函数:
CKEDITOR.replace('meTextarea', {
removePlugins: 'filebrowser'
});
在此处阅读有关设置配置的更多信息:Setting Configuration。
如果你无法从给定的功能中禁用 if,那么在你的 css
中试试这个东西
.ck-file-dialog-button
{
display:none !important;
}
这将隐藏图片上传按钮而不打扰您的 UI。
.ck-dropdown{
display:none !important;
}
我想在某些 CKEditor textareas
上禁用图像上传。我不想通过 config.js 文件执行此操作,因为它将对所有 textareas
禁用。如何使用 .replace 方法执行此操作?
示例:
CKEDITOR.replace("meTextarea", {
// what should I write here to disable the plugin?
});
提前致谢
您可以简单地将选项传递给 CKEDITOR.replace()
函数:
CKEDITOR.replace('meTextarea', {
removePlugins: 'filebrowser'
});
在此处阅读有关设置配置的更多信息:Setting Configuration。
如果你无法从给定的功能中禁用 if,那么在你的 css
中试试这个东西.ck-file-dialog-button
{
display:none !important;
}
这将隐藏图片上传按钮而不打扰您的 UI。
.ck-dropdown{
display:none !important;
}