<script type="text/javascript" language="javascript">
function a()
{
//得到控件的html
var checkContent =FCKeditorAPI.GetInstance("FCKeditor1").GetXHTML();
alert(checkContent);
//得到html的长度
var len = FCKeditorAPI.GetInstance("FCKeditor1").GetXHTML().length;
alert(len);
//得到fck控件
var oEditor = FCKeditorAPI.GetInstance('FCKeditor1');
//得到编辑器中的文字
var text = oEditor.EditorDocument.body.innerText;
alert(text);
//让编辑器得到焦点
oEditor.Focus();
}
</script>
本文介绍了一个使用FCKeditor的示例脚本,展示了如何获取编辑器中的HTML内容、计算其长度及提取纯文本。这些操作对于实现富文本编辑器的功能非常有用。

被折叠的 条评论
为什么被折叠?



