KEditor中的工具栏默认显示所有功能按钮。出于安全的原因、或者是简化的原因,需要对这个工具栏进行自定义设置。CKEditor工具栏自定义配置非常简单。
编辑ckeditor目录下的的config.js文件,默认的是下面的工具栏代码,
注意工具按钮是分组的,一个name内的大括号就是一个工具按钮分组,items后边是具体的按钮,“/”表示工具栏换行,“-”表示工具图标之间的中隔线“|”
(特别说明:config.js中没有下面的代码,默认就是显示全部按钮,但如果对工具栏进行自定义,最好的办法还是把下面的代码全部复制到config.js,然后再删除一个个不需要的按钮)
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','-','About' ] }]; config.toolbar_Basic =[ ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','About']];
下面是经删除过后的工具条代码
config.toolbar = 'Full'; config.toolbar_Full = [ {name: 'document',items: ['Source', '-', 'DocProps', 'Preview', 'Print', '-']}, {name: 'clipboard',items: ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo']}, {name: 'editing',items: ['Find', 'Replace', '-', 'SelectAll', '-']}, { 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']}, '/', { name: 'styles',items: ['Styles', 'Format', 'Font', 'FontSize']}, { name: 'colors',items: ['TextColor', 'BGColor']}, { name: 'tools',items: [ 'ShowBlocks', '-']} ]; config.toolbar_Basic = [['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink', '-', 'About']];
工具栏的定义英汉对照说明:
Source = 源码模式
-Save = 保存(提交表单)NewPage = 新建Preview = 预览- = 分割线Templates = 模板Cut = 剪切Copy = 复制Paste = 粘贴PasteText = 粘贴为无格式文本PasteFromWord = 从 MS WORD 粘贴-Print = 打印SpellChecker = 拼写检查Scayt = 即时拼写检查Undo = 撤销Redo = 重做-Find = 查找Replace = 替换-SelectAll = 全选RemoveFormat = 清除格式Form = 表单Checkbox = 复选框Radio = 单选框TextField = 单行文本Textarea = 多行文本Select = 列表/菜单Button = 按钮ImageButton = 图片按钮HiddenField = 隐藏域/Bold = 加粗Italic = 倾斜Underline = 下划线Strike = 删除线-Subscript = 下标Superscript = 上标NumberedList = 编号列表BulletedList = 项目列表-Outdent = 减少缩进量Indent = 增加缩进量Blockquote = 块引用CreateDiv = 创建DIV容器JustifyLeft = 左对齐JustifyCenter = 居中JustifyRight = 右对齐JustifyBlock = 两端对齐BidiLtr = 文字方向从左到右BidiRtl = 文字方向从右到左Link = 插入/编辑超链接(上传文件)Unlink = 取消超链接Anchor = 插入/编辑锚点链接Image = 图像(上传)Flash = 动画(上传)Table = 表格HorizontalRule = 插入水平线Smiley = 插入表情SpecialChar = 插入特殊符号PageBreak = 插入分页符/Styles = 样式快捷方式Format = 文本格式Font = 字体FontSize = 文字大小TextColor = 文字颜色BGColor = 背景颜色Maximize = 全屏编辑模式ShowBlocks = 显示区块-About = 显示关于
CKEditor官网对CKEditor Toolbar Definition的说明