手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >JavaScript获取FCK编辑器信息的具体方法
JavaScript获取FCK编辑器信息的具体方法
摘要:复制代码代码如下:functiongetEditorContents(){varoEditor=FCKeditorAPI.GetInstan...

复制代码 代码如下:

function getEditorContents(){

var oEditor = FCKeditorAPI.GetInstance("content");

alert(oEditor.GetXHTML(true));

}

//向编辑器插入指定代码

function insertHTMLToEditor(codeStr){

var oEditor = FCKeditorAPI.GetInstance("content");

if (oEditor.EditMode==FCK_EDITMODE_WYSIWYG){

oEditor.InsertHtml(codeStr);

}else{

return false;

}

}

//统计编辑器中内容的字数

function getLength(){

var oEditor = FCKeditorAPI.GetInstance("content");

var oDOM = oEditor.EditorDocument;

var iLength ;

if(document.all){

iLength = oDOM.body.innerText.length;

}else{

var r = oDOM.createRange();

r.selectNodeContents(oDOM.body);

iLength = r.toString().length;

}

alert(iLength);

}

//执行指定动作

function ExecuteCommand(commandName){

var oEditor = FCKeditorAPI.GetInstance("content") ;

oEditor.Commands.GetCommand(commandName).Execute() ;

}

//设置编辑器中内容

function SetContents(codeStr){

var oEditor = FCKeditorAPI.GetInstance("content") ;

oEditor.SetHTML(codeStr) ;

}

【JavaScript获取FCK编辑器信息的具体方法】相关文章:

javascript实现table表格隔行变色的方法

JavaScript中的parse()方法使用简介

JavaScript判断数组是否包含指定元素的方法

Javascript通过overflow控制列表闭合与展开的方法

JavaScript中Cookies的相关使用教程

JavaScript函数使用的基本教程

JavaScript获取并更改input标签name属性的方法

简述JavaScript中正则表达式的使用方法

JavaScript基于setTimeout实现计数的方法

JavaScript中Number.MAX_VALUE属性的使用方法

精品推荐
分类导航