plugin.js 533 B

123456789101112131415161718192021
  1. (function(){
  2. //Section 1 : 按下自定义按钮时执行的代码
  3. var a= {
  4. exec:function(editor){
  5. editor.insertHtml("");
  6. }
  7. },
  8. //Section 2 : 创建自定义按钮、绑定方法
  9. b='attchment';
  10. CKEDITOR.plugins.add(b,{
  11. init:function(editor){
  12. editor.addCommand(b,a);
  13. editor.ui.addButton('attchment',{
  14. label:'插入附件',
  15. icon: this.path + 'cab.gif',
  16. command:b
  17. });
  18. }
  19. });
  20. })();