FCKEditor编辑器清除内容、获得焦点、写入内容

来源:互联网 发布:日记软件for mac 编辑:程序博客网 时间:2024/04/30 00:01

 

function writeContent(context)

{

var oEditor = FCKeditorAPI.GetInstance("myTextAreaId");

oEditor.EditorDocument.body.innerHTML = "";

oEditor.Focus();
oEditor.InsertHtml(context);

}

 

function clearContent()

{

var oEditor = FCKeditorAPI.GetInstance("myTextAreaId");

oEditor.EditorDocument.body.innerHTML = "";

oEditor.Focus();

}

 

##########################

 

function writeContent(context)

{

var oEditor = FCKeditorAPI.GetInstance("myTextAreaId");

oEditor.SetHTML(context);

 

}

 

function clearContent()

{

var oEditor = FCKeditorAPI.GetInstance("myTextAreaId");

oEditor.SetHTML("");

 

}

原创粉丝点击