ckeditor サーフェスの変更を検出するための次のコードがあります。
CKEDITOR.instances['editor1'].on("instanceReady", function(){
this.document.on("keyup", function(){
console.log("sth changed");
});
});
その中の単語を数えるために、変更時にエディターの内容を取得したいと思います。を使用してどのようにアクセスできCKEDITOR.instances
ますか?