jenney.qiu

导航

2012年3月19日

js对FCKeditor取值赋值

摘要: 获取编辑器中HTML内容,EditorName为控件IDfunction getEditorHTMLContents(EditorName){ var oEditor = FCKeditorAPI.GetInstance(EditorName); return(oEditor.GetXHTML(true)); }获取编辑器中文字内容function getEditorTextContents(EditorName){ var oEditor = FCKeditorAPI.GetInstance(EditorName); return(oEditor.Editor... 阅读全文

posted @ 2012-03-19 18:43 jenney.qiu 阅读(792) 评论(0) 推荐(0) 编辑