CKEDITOR 4
$(document).ready(function(){
CKEDITOR.on('instanceCreated', function(e) {
e.editor.on('contentDom', function() {
e.editor.document.on('keyup', function(event) {
//want current ckeditor id
});
});
});
});
我有不止一个 ckeditor 并且都在运行时创建。如果我有事件对象,是否可以获得 ck 编辑器的 ID 和值。