ckeditor对焦不工作 [英] ckeditor on focus not working

查看:160
本文介绍了ckeditor对焦不工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

只是尝试用ckeditor和jquery做一个简单的on focus命令。

  var foo = //这里信号ckeditor? 
$(foo).focus(function(){
$(。class1)。hide();
$(。class2)。show();
});

也许这很简单,我只是忽略它,但任何建议或链接非常感谢。



已尝试:


CKEditor对焦移除默认值


如何监听CKEditor中的基本事件?


http://docs.ckeditor.com/#!/api/CKEDITOR.focusManager-method-constructor


http://www.mytechlogy.com/professionals/questions/forum-details/158/how-to-make-focus-in-ckeditor-using-js/ ?ref = relevant_posts#.U2EgUv3z3eI


http://ckeditor.com/forums/Support/jquery-click-event-not-working-textarea-ckeditor

  CKEDITOR.on('instanceCreated', function(event){
event.editor.on(focus,function(){//与jQuery无关,这是CKEDITOR的on
$(。class1)。hide ;
$(。class2)。show();
}
);

  CKEDITOR.instances [editorID]。on(focus,function(){// CKEDITOR的ON 
$(class1)。hide();
$ .class2)。show();
});


Just trying to do a simple on focus command with ckeditor and jquery.

var foo = // what can i do here to signal ckeditor?
$(foo).focus(function(){
  $(".class1").hide();
  $(".class2").show();
});

Maybe this is really simple and I'm just overlooking it but any advice or links are greatly appreciated.

Have tried:
CKEditor on focus remove default value
How to listen to basic events in CKEditor?
http://docs.ckeditor.com/#!/api/CKEDITOR.focusManager-method-constructor
http://www.mytechlogy.com/professionals/questions/forum-details/158/how-to-make-focus-in-ckeditor-using-js/?ref=related_posts#.U2EgUv3z3eI
http://ckeditor.com/forums/Support/jquery-click-event-not-working-textarea-ckeditor

解决方案

Basic idea with CKEditor's events

CKEDITOR.on('instanceCreated', function (event) {
    event.editor.on("focus", function () {  //nothing to do with jQuery, this is CKEDITOR's on
        $(".class1").hide();
        $(".class2").show();
    }
);

or

CKEDITOR.instances["editorID"].on("focus", function(){  //CKEDITOR's ON
    $(".class1").hide();
    $(".class2").show();
} );

这篇关于ckeditor对焦不工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆