1

我如何使用 CKEDITOR 4.0 的调整大小事件

我需要在编辑器调整大小时设置一些属性。在 CKEDITOR 4.0 API 事件中存在。但我不知道如何使用它。

在此处输入图像描述

谁能告诉我怎么用。。

4

2 回答 2

6

Using the instanceCreated event didn't work for me, but instanceReady did:

CKEDITOR.on('instanceReady',function(ev) {
    ev.editor.on('resize',function(reEvent){
        //your code here
    });
});
于 2014-05-16T06:06:38.420 回答
5

解决方案:

//After the editor instance created add the resize event
CKEDITOR.on('instanceCreated', function(ev) {
    ev.editor.on('resize',function(reEvent){
         alert( 'The editor resized' );
     });
 });
于 2013-05-30T06:47:27.540 回答