js獲取和設(shè)置FCK編輯器的內(nèi)容

字號(hào):


    // 獲取編輯器中HTML內(nèi)容 
    function getEditorHTMLContents(EditorName) { 
        var oEditor = FCKeditorAPI.GetInstance(EditorName); 
        return(oEditor.GetXHTML(true)); 
    } 
    // 獲取編輯器中文字內(nèi)容 
    function getEditorTextContents(EditorName) { 
        var oEditor = FCKeditorAPI.GetInstance(EditorName); 
        return(oEditor.EditorDocument.body.innerText); 
    } 
    // 設(shè)置編輯器中內(nèi)容 
    function SetEditorContents(EditorName, ContentStr) { 
        var oEditor = FCKeditorAPI.GetInstance(EditorName) ; 
        oEditor.SetHTML(ContentStr) ; 
    }