FCKEditor 사용자 컨텐츠 삽입 FCKeditorAPITotal 902 : Today 5 : Yesterday 5
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;* onload 이벤트 이후에 FCKeditorAPI 핸들러를 사용할 수 있음
oFCKeditor.BasePath = sBasePath ;
oFCKeditor.Height = 300 ;
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
oFCKeditor.Create();
window.onload = function(){
oEditor = FCKeditorAPI.GetInstance(oFCKeditor.InstanceName) ;
}

Insert Content 버튼을 클릭하게 되면 에디터의 커서 영역에 컨텐츠가 삽입되는 이미지 입니다.
<button onclick="oEditor.InsertHtml('Hello World!!')" style="font-size:9pt;">Insert Content</button>
oEditor 로 정의된 FCKeditorAPI를 이용하여 InsertHthml method를 호출하여 사용자 컨텐츠를 삽입한다.
