http://ckeditor.com/Forums/Support


http://docs.ckeditor.com/#

http://docs.ckeditor.com/#!/api/CKEDITOR

http://ckeditor.com/blog/So-You-Think-You-Found-a-Bug


http://www.ibm.com/developerworks/cn/web/1012_moying_ckeditor/

http://wx.shedu.com.cn/?p=18


http://www.52cfml.com/post/Topics_Ckeditor_adapter.html

http://wuhongyu.iteye.com/blog/1051419


http://stackoverflow.com/questions/5737899/setting-form-values-from-fckeditor-before-submit-is-called ,一个在stackoverflow上面的问题.

FCKeditorAPI.GetInstance('InstanceName').UpdateLinkedField()

for CKEditor from Using jQuery to grab the content from CKEditor's iframe

for( instance in CKEDITOR.instances )

CKEDITOR.instances[instance].updateElement();


http://www.radys.cn/

使用循环遍历所有的CKEDITOR

for( instance in CKEDITOR.instances)

{

var editor = instance;

if(editor)

{

alert(editor.name);

}

}


指定ID的editor获取焦点

CKEDITOR.instances[“content”].focus();

还可以使用其它方法获取ID实例

CKEDITOR.instances.editor1
CKEDITOR.instances[editor1]