首页 > 开发 > Java > 正文

javascript fckeditor网页编辑器取值与赋值实现代码

2024-07-21 02:53:45
字体:
来源:转载
供稿:网友
这篇文章对于使用fckeditor编辑器的朋友是个不错应用,主要介绍的是js对fckeditor的取值与赋值操作,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) ; 
 


注:相关教程知识阅读请移步到编辑器频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表