您现在的位置是:网站首页> 编程资料编程资料
javascript fckeditor编辑器取值与赋值实现代码_网页编辑器_
2023-05-25
212人已围观
简介 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) ;
}
FCKeditor 插件开发
复制代码 代码如下:
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) ;
}
FCKeditor 插件开发
您可能感兴趣的文章:
相关内容
- Ewebeditor 不能粘贴或复制的解决方法_网页编辑器_
- eWebEditor 请选择一个有效的文件的解决方法_网页编辑器_
- FCKeditor 和 SyntaxHighlighter 代码高亮插件的整合_网页编辑器_
- CKEditor网页编辑器 中文使用说明_网页编辑器_
- FCKEditor常用Js代码,获取FCK内容,统计FCK字数,向FCK写入指定代码_网页编辑器_
- Ewebeditor及fckeditork单引号问题的解决方法_网页编辑器_
- FCKeidtor 清除编辑器内容的代码_网页编辑器_
- FCKEditor 自定义用户目录的修改步骤 (附源码)_网页编辑器_
- CKEditor/FCKEditor 使用 CKeditor 3.0.1 快速使用教程(含插入图片)_网页编辑器_
- 针对PHP环境下Fckeditor编辑器上传图片配置详细教程_网页编辑器_
