此篇在記錄著在使用FCKeditor編輯器時所使用的FCKeditorAPI
1. 取得編輯器裡頭的內容
var oEditor=FCKeditorAPI.GetInstance('Contents');
var Contents = oEditor.GetXHTML();
其中('Contents');為內容欄位名稱
oEditor.SetHTML(內容);
oEditor.SetHTML(內容);
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(內容);
沒有留言:
張貼留言