ckeditor_msg.js 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. ckeditor = function(textareaid,ctx) {
  2. CKEDITOR.context =ctx;
  3. //构造对像
  4. var editor = CKEDITOR.replace(textareaid, {
  5. skin : 'office2003',
  6. toolbarCanCollapse : false,
  7. toolbarGroupCycling : true,
  8. toolbar : [
  9. { name: 'document', items : [ 'Source','-','NewPage','DocProps','Preview','Print','-','Templates' ] },
  10. { name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
  11. { name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','SpellChecker', 'Scayt' ] },
  12. { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','-','RemoveFormat' ] },
  13. { name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','CreateDiv','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl' ] },
  14. { name: 'links', items : [ 'Link','Unlink','Anchor' ] },
  15. { name: 'insert', items : [ 'Flash','Table','HorizontalRule','Smiley','SpecialChar' ] },
  16. { name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] },
  17. { name: 'colors', items : [ 'TextColor','BGColor' ] },
  18. { name: 'tools', items : [ 'Maximize', 'ShowBlocks','-'] }
  19. ]
  20. });
  21. return editor;
  22. };