javascript fckeditor 편집기 값 추출 및 할당 실현 코드

775 단어 jsfckeditor
편집기 의 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) ;
}
FCKeditor 플러그 인 개발

좋은 웹페이지 즐겨찾기