美文网首页
UEditor监听鼠标聚焦事件与内容改变事件

UEditor监听鼠标聚焦事件与内容改变事件

作者: 小龙虾Julian | 来源:发表于2017-11-29 09:28 被阅读0次
监听鼠标聚焦事件:
UE.getEditor('content').addListener('focus',function(editor){
        //相关操作
});
监听内容改变事件
UE.getEditor('content').addListener('contentChange',function(editor){
        //相关操作
});

注:其中content代表你的富文本编辑器的id值

相关文章

网友评论

      本文标题:UEditor监听鼠标聚焦事件与内容改变事件

      本文链接:https://www.haomeiwen.com/subject/iktubxtx.html