模糊的CKEditor 4 updateElement

时间:2012-12-07 14:04:36

标签: ckeditor

我有一个页面,其中有多个编辑器,其中包含“.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中的行为?

1 个答案:

答案 0 :(得分:9)

尝试以类似的方式添加事件

CKEDITOR.instances.editor1.on('blur', function(e) {
    console.log('onblur fired');
});