日期:2014-05-16  浏览次数:20345 次

利用Javascript取和设FCKeditor值

// 获取编辑器中HTML内容
function getEditorHTMLContents(EditorName) {
??? var oEditor = FCKeditorAPI.GetInstance(EditorName);
??? return(oEditor.GetXHTML(true));
}

// 获取编辑器中文字内容
function getEditorTextContents(EditorName) {
??? var oEditor = FCKeditorAPI.GetInstance(EditorName);
??? return(oEditor.EditorDocument.body.innerText);
}

// 设置编辑器中内容
function SetEditorContents(EditorName, ContentStr) {
??? var oEditor = FCKeditorAPI.GetInstance(EditorName) ;
??? oEditor.SetHTML(ContentStr) ;
}


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/hailang43/archive/2009/06/20/4285852.aspx