Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经成功设置了 CKEditor 并且效果很好,但是折叠工具栏按钮 (3) 让我很恼火:
有没有办法隐藏或删除它?如果是这样,怎么做?
从这个来源
您可以在 plugins/toolbar/plugin.js 中轻松禁用它
CKEDITOR.replace( 'editor1', { toolbarCanCollapse : false } );
或者
CKEDITOR.config.toolbarCanCollapse = false;