从 CKEditor 中删除特定按钮可以通过以下步骤实现:
config.js
文件中。config.toolbar
参数,该参数定义了编辑器的工具栏按钮。config.toolbar
参数中找到要删除的按钮对应的配置项,一般是以字符串形式表示按钮的名称或标识符。config.toolbar
中移除即可。以下是一个示例的 CKEditor 配置文件,展示了如何删除粗体(Bold)按钮:
CKEDITOR.editorConfig = function( config ) {
config.toolbar = [
{ name: 'document', items: [ 'Source', '-', 'Save', 'NewPage', 'Preview', 'Print', '-', 'Templates' ] },
{ name: 'clipboard', items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] },
{ name: 'editing', items: [ 'Find', 'Replace', '-', 'SelectAll', '-', 'Scayt' ] },
// 删除粗体按钮的配置项
{ name: 'basicstyles', items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] },
'/',
{ name: 'styles', items: [ 'Styles', 'Format' ] },
{ name: 'colors', items: [ 'TextColor', 'BGColor' ] },
{ name: 'tools', items: [ 'Maximize', 'ShowBlocks' ] },
{ name: 'about', items: [ 'About' ] }
];
};
在上述示例中,我们将删除粗体按钮的配置项 { name: 'basicstyles', items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] }
从 config.toolbar
中移除即可。
需要注意的是,具体的配置文件路径和配置项可能因项目而异,请根据实际情况进行修改。
关于 CKEditor 的更多配置和使用方法,可以参考腾讯云的 CKEditor 文档:CKEditor - 腾讯云
领取专属 10元无门槛券
手把手带您无忧上云