用js调用fckeditor,在编辑时如何得到fck的内容 - 技术问答
用JS调用fck的方法:得到fck的内容用$_POST[\'FCKeditor1\']但在对文章进行编辑时怎么得到fck的内容?...
用JS调用fck的方法:得到fck的内容用$_POST[\'FCKeditor1\']但在对文章进行编辑时怎么得到fck的内容?
展开
1个回答
2013-05-08
展开全部
利用Javascript取和设FCKeditor值也是非常容易的,如下:// 获取编辑器中HTML内容function getEditorHTMLContents(EditorName) {? ? var oEditor = FCKeditorAPI.GetInstance(EditorName);? ? return(oEditor.GetXHTML(true));}// 获取编辑器中文字内容function getEditorTextContents(EditorName) {? ? var oEditor = FCKeditorAPI.GetInstance(EditorName);? ? return(oEditor.EditorDocument.body.innerText);}// 设置编辑器中内容function SetEditorContents(EditorName, ContentStr) {? ? var oEditor = FCKeditorAPI.GetInstance(EditorName) ;? ? oEditor.SetHTML(ContentStr) ;}你在ppc一搜就有了,上面这个
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询