1
我如何使用CKEDITOR 4.0的調整大小事件。如何在CKEDITOR 4.0上使用resize事件?
我需要在編輯器調整大小時設置一些屬性。 在CKEDITOR 4.0 API事件有,但我不知道如何使用它。
誰能告訴我如何使用它..
我如何使用CKEDITOR 4.0的調整大小事件。如何在CKEDITOR 4.0上使用resize事件?
我需要在編輯器調整大小時設置一些屬性。 在CKEDITOR 4.0 API事件有,但我不知道如何使用它。
誰能告訴我如何使用它..
解決方案:
//After the editor instance created add the resize event
CKEDITOR.on('instanceCreated', function(ev) {
ev.editor.on('resize',function(reEvent){
alert('The editor resized');
});
});
使用instanceCreated
事件並沒有爲我工作,但instanceReady
做的:
CKEDITOR.on('instanceReady',function(ev) {
ev.editor.on('resize',function(reEvent){
//your code here
});
});
同樣適用於我。該文檔說:「要與完全初始化的實例進行交互,請使用'instanceReady'事件。」 – martin