CKEditor和FCKEditor的使用記錄

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]




發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章