FCKeditor(现在已更名为CKEditor)是一个开源的富文本编辑器,可以通过自定义工具栏来满足自己的需求。以下是一些自定义工具栏的方法:
CKEDITOR.replace( 'editor1', {
toolbar: [
{ name: 'document', items: [ 'Source', '-', 'NewPage', 'Preview' ] },
{ name: 'clipboard', items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] },
{ name: 'editing', items: [ 'Find', 'Replace', '-', 'SelectAll', '-', 'Scayt' ] },
'/',
{ name: 'basicstyles', items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] }
]
});
CKEDITOR.replace( 'editor1', {
extraPlugins: 'justify,font,link,image'
});
CKEDITOR.replace( 'editor1', {
removeButtons: 'Underline,Strike,Subscript,Superscript,Anchor,Styles,Format'
});
通过以上方法,您可以根据自己的需求轻松自定义FCKeditor的工具栏。