读书人

利用Javascript取跟设FCKeditor值

发布时间: 2012-10-30 16:13:36 作者: rapoo

利用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

读书人网 >JavaScript

热点推荐