CKEDITOR:将滚动事件设置为CKEditor文档

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CKEDITOR:将滚动事件设置为CKEditor文档相关的知识,希望对你有一定的参考价值。

我正在尝试将scroll event设置为CKEditor。

我尝试下面的事情来完成这件事。

方法1:

var html = $(editor.editable().$);
$(html).on('scroll',function(){
   console.log('Scroll');
});

方法2:

editor.on('scroll',function(){
    console.log('Scroll');
}); 

但这两种方法都不能很好地运作。

任何建议。请帮助我。

答案

最后,我找到了答案。

editor.document.on('scroll',function(){
     console.log('scroll Works');
});

以上是关于CKEDITOR:将滚动事件设置为CKEditor文档的主要内容,如果未能解决你的问题,请参考以下文章

JS CKEditor使用setData后绑定click事件

滚动到ckeditor的底部

删除元素时的CKEditor事件?

ckeditor粘入word内容如何默认设置为保留样式

ckeditor4 使用总结

CKEditor 5保存所选文本,并在恢复内容后再次将其设置为已选中