this.EditingArea' 为空或不是对象
现象:
var oEditor = FCKeditorAPI.GetInstance("fck1");
oEditor.SetHTML(值); //这时候,这位置报错误!
原因:编辑器控件还没加载出来就赋值,这一定是错误的
解决方案:写一个全局函数 FCKeditor_OnComplete() 来操作
funtion FCKeditor_OnComplete(){//这个函数当编辑器自己加载完成之后会自己调用不用我们手动调用 这个和document.ready一样
var oEditor = FCKeditorAPI.GetInstance("fck1");
}
posted on 2011-08-10 12:45
sanmao 阅读(462)
评论(0) 编辑 收藏