CKEditor及CKFinder整合开发帮助文档及工具栏配置指南

需积分: 0 0 下载量 187 浏览量 更新于2024-03-25 收藏 950KB DOCX 举报
在CKEditor和CKFinder整合开发中,配置帮助文档是至关重要的。首先需要注意的是工具栏的自定义配置,工具按钮是分组的,每个name内的大括号代表一个工具按钮分组,items之后列出具体的按钮。其中,“/”表示工具栏换行,“-”表示工具图标之间的中隔线。“|”用来区分不同按钮。如果在config.js中没有下面的代码,默认会显示全部按钮,但如果需要对工具栏进行自定义,最好将下面的代码全部复制到config.js,然后根据需要删除不需要的按钮。 在config.js中,通常配置toolbar项的值为'Full',代表完整的工具栏。具体的配置可以参考以下示例: ```javascript config.toolbar = 'Full'; config.toolbar_Full = [ { name: 'document', items : [ 'Source','-','Save','NewPage','DocProps','Preview','Print','-','Templates' ] }, { name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] }, { name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','SpellChecker', 'Scayt' ] }, { name: 'forms', items : [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField' ] }, '/', { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] }, { name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','CreateDiv','-', 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl' ] }, { name: 'links', items : [ 'Link','Unlink','Anchor' ] }, { name: 'insert', items : [ 'Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe' ] }, '/', { name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] }, { name: 'colors', items : [ 'TextColor','BGColor' ] }, { name: 'tools', items : [ 'Maximize', 'ShowBlocks' ] }, { name: 'about', items : [ 'About' ] } ]; ``` 通过配置自定义的工具栏,可以根据实际需求来显示或隐藏不同的按钮,使用户界面更加简洁和易用。建议在对工具栏进行自定义时,先将以上配置代码复制到config.js中,然后根据具体需求逐个删除不需要的按钮,以达到最佳的用户体验和功能性。