2013-05-30 51 views

回答

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'); 
    }); 
}); 
5

使用instanceCreated事件並沒有爲我工作,但instanceReady做的:

CKEDITOR.on('instanceReady',function(ev) { 
    ev.editor.on('resize',function(reEvent){ 
     //your code here 
    }); 
}); 
+1

同樣適用於我。該文檔說:「要與完全初始化的實例進行交互,請使用'instanceReady'事件。」 – martin

相關問題