FCKeditor(現(xiàn)在已更名為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'
});
通過以上方法,您可以根據(jù)自己的需求輕松自定義FCKeditor的工具欄。