plugin.js 562 B

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