FCKEDitor 편집기의 textarea 값 부여 방법

835 단어 fckeditor
실행 초기화 코드
 
<script type="text/javascript">  
       window.onload = function(){  
            var oFCKeditor = new FCKeditor('FCKmessage') ;  
            oFCKeditor.BasePath = "/fckeditor/";  
            oFCKeditor.Width="100%";  
            oFCKeditor.Height="400";  
            oFCKeditor.ReplaceTextarea();  
       }  
</script>  

값:
 
 
var content = FCKeditorAPI.GetInstance("FCKmessage").GetXHTML("true");  

 
 
할당 상황은 상대적으로 복잡합니다.
먼저 한 가지를 말하자면
if(oEditor.EditorDocument!=null){  
        oEditor.EditorDocument.body.innerHTML = " ";  
    }  

좋은 웹페이지 즐겨찾기