在略微修改的CKEditor上捕获编辑事件

时间:2018-12-21 13:46:30

标签: javascript jquery events ckeditor

我正在编写简单的编辑面板,其中只有几个CKEditor窗口,我需要捕捉某种编辑事件。

在进行更改之前,这段代码可以完美地做到这一点:

$('.cke_wysiwyg_frame').on('load', function(){ console.log('hi') });

但是对于设计问题,我已经将.cke-bottom和.cke-top设为css不可见

 .cke_bottom, .cke_top{ display: none; }

之后,我尝试了多种方法来捕捉编辑事件,例如:

 $(CKEDITOR.instances.desc_product).click(function() { console.log('hi'); });
 $("[id^=cke_").click(function(){ console.log('hi'); });

,但没有一个比以前好。有什么方法可以隐藏顶部和底部的条形图?

0 个答案:

没有答案