我在不同的页面上有多个CKEditor实例,所以我不想修改config.js或每个页面都有单独的config.js实例。
我正在使用以下方法在运行时创建工具栏:
$(document).ready(function() {
CKEDITOR.replace('Description');
var editor = CKEDITOR.instances['Description'];
if (editor) {
editor.destroy(true);
}
CKEDITOR.config.toolbar_Basic = [
{ 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: 'forms', items: [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField' ] },
'/',
{ name: 'basicstyles', items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'CopyFormatting', 'RemoveFormat' ] },
{ name: 'paragraph', items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl', 'Language' ] },
{ 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' ] }
];
CKEDITOR.config.toolbar = 'Basic';
CKEDITOR.config.width=650;
CKEDITOR.config.height=400;
CKEDITOR.config.extraAllowedContent = 'span;ul;li;table;td;style;*[id];*(*);*{*}';
CKEDITOR.replace('Description', CKEDITOR.config);
});
不是所有的工具栏选项都显示出来。例如,
{ name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ] },
{ name: 'colors', items: [ 'TextColor', 'BGColor' ] },
可见样式和格式,但看不到Font,FontSize,TextColor和BGColor。
如何显示那些缺少的工具栏项目。
答案 0 :(得分:0)
这仅仅是没有安装完整的CKEditor的问题。我安装了不包含字体和颜色插件的标准版本。
安装完整版本可以纠正这种情况。