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和值。
答案 0 :(得分:1)
你没有提到哪个版本所以我假设4.x.您可以遍历实例以查找文档:
e.editor.document.on('keyup', function(event) {
for (name in CKEDITOR.instances) {
var instance = CKEDITOR.instances[name];
if (instance.document == this) {
alert('ID: ' + instance.id + '\nName: ' + instance.name + '\n' + instance.getData());
break;
}
}
});