ckeditor去掉按钮

来源:互联网 发布:linux系统字体中文乱码 编辑:程序博客网 时间:2024/06/05 14:11

在ckeditor/config.js中,配置

config.toolbar = [
                 [ 'Source', '-', 'Preview', '-', 'Templates' ],
                 [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-',
                 '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' ],
                 [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ],
                  
                 [ 'Link', 'Unlink', 'Anchor' ],
                 ['Image', 'Flash', 'Table','HorizontalRule', 'Smiley',
                 'SpecialChar', 'PageBreak' ], '/',
                 [ 'Styles', 'Format', 'Font', 'FontSize' ],
                  
                 [ 'TextColor', 'BGColor' ],
                 [ 'Maximize', 'ShowBlocks', '-', 'About' ] ];

比如,不要上传图片,上传flash按钮,直接删掉'Image', 'Flash',即可。

0 0