ckeditor_view.js 545 B

12345678910111213141516171819202122232425
  1. ckeditor = function(textareaid,ctx) {
  2. CKEDITOR.context =ctx;
  3. //构造对像
  4. var editor = CKEDITOR.replace(textareaid, {
  5. skin : 'office2003',
  6. height:300,
  7. toolbarCanCollapse : false,
  8. toolbarGroupCycling : true,
  9. toolbar : [
  10. { name: 'basicstyles', items : ['Source', 'saveRule','Bold','Italic','Underline','Strike'] },
  11. { name: 'styles', items : [ 'Font','FontSize' ] },
  12. { name: 'colors', items : [ 'TextColor','BGColor' ] }
  13. ]
  14. });
  15. return editor;
  16. };