我有一个页面,其中有多个编辑器,其中包含“.ckeditor”类。
我正在尝试更新模糊值,但模糊不会触发。
$(".ckeditor").on("blur", function() {
console.log("blur");
for (var i in CKEDITOR.instances) {
console.log(i);
CKEDITOR.instances[i].updateElement();// to update the textarea
}
});
任何人都知道他们是否完全改变了ckeditor 4中的行为?
答案 0 :(得分:9)
尝试以类似的方式添加事件
CKEDITOR.instances.editor1.on('blur', function(e) {
console.log('onblur fired');
});