一项目中使用了kindeditor富文本编辑器。http://kindeditor.net/
需求是:
用键盘或鼠标切换到富文本编辑器时,执行一个事件,如alert。
试试在afterFocus
中执行
感谢,就是他了。但是有个问题:
$(function() { var editor = KindEditor.create('#content',{ afterBlur: function () { this.sync(); }, afterFocus : function(){ alert('test'); } }); });
为什么获得焦点时,一直不停的执行alert!
@iitrust: 改为console.log('test')
试试,关闭alert对话框的操作可能会触发focus事件
@dudu: 感谢兄台,专家级别了!