CKEditor 聚焦

CKEditor focusout

我试图在 CKEditor 中设置 focusout,但没有任何效果。

我使用的是 cdn 的标准 4.8.0 版本。

问题出在哪里?我在下面粘贴代码:

CKEDITOR.instances['note-content'].on("focusout", function(){
alert('ready');  
});

note-content 是我的 div 和 #id

CKEDITOR.instances['note-content'].getData();
CKEDITOR.instances['note-content'].setData(test);

完美运行

也尝试将 cke 实例添加到变量,但没有任何效果。

有人可以帮助我吗?

试试这个:

CKEDITOR.instances['note-content'].on("blur", function() {
    alert('ready');  
});