2011年6月30日 星期四

FCKeditorAPI的使用方法

此篇在記錄著在使用FCKeditor編輯器時所使用的FCKeditorAPI 

1. 取得編輯器裡頭的內容
   var oEditor=FCKeditorAPI.GetInstance('Contents');
   var   Contents   =   oEditor.GetXHTML();
   其中('Contents');為內容欄位名稱 



2.設置編輯器裡頭的內容
     var oEditor=FCKeditorAPI.GetInstance('欄位名稱');
     oEditor.SetHTML(內容); 



3.子視窗設置父視窗編輯器裡頭的內容
     var oEditor=window.opener.FCKeditorAPI.GetInstance('欄位名稱');
     oEditor.SetHTML(內容);



沒有留言: