http://ckeditor.com/Forums/Support html
http://docs.ckeditor.com/# jquery
http://docs.ckeditor.com/#!/api/CKEDITORweb
http://ckeditor.com/blog/So-You-Think-You-Found-a-Bug api
http://www.ibm.com/developerworks/cn/web/1012_moying_ckeditor/ide
http://wx.shedu.com.cn/?p=18 post
http://www.52cfml.com/post/Topics_Ckeditor_adapter.htmlspa
http://wuhongyu.iteye.com/blog/1051419 code
http://stackoverflow.com/questions/5737899/setting-form-values-from-fckeditor-before-submit-is-called ,一個在stackoverflow上面的問題.
orm
FCKeditorAPI.GetInstance('InstanceName').UpdateLinkedField()
htm
for CKEditor from Using jQuery to grab the content from CKEditor's iframe
for( instance in CKEDITOR.instances )
CKEDITOR.instances[instance].updateElement();
使用循環遍歷全部的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]