亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

javascript fckeditor編輯器取值與賦值實(shí)現(xiàn)代碼

 更新時(shí)間:2010年05月26日 20:39:47   作者:  
這篇文章對(duì)于使用fckeditor編輯器的朋友是個(gè)不錯(cuò)應(yīng)用,主要介紹的是js對(duì)fckeditor的取值與賦值操作,fckeditor是個(gè)不錯(cuò)的比較方便的擴(kuò)展功能的編輯器。
獲取編輯器中HTML內(nèi)容
復(fù)制代碼 代碼如下:

function getEditorHTMLContents(EditorName)
{
var oEditor = FCKeditorAPI.GetInstance(EditorName);
return(oEditor.GetXHTML(true));
}

獲取編輯器中文字內(nèi)容
復(fù)制代碼 代碼如下:

function getEditorTextContents(EditorName)
{
var oEditor = FCKeditorAPI.GetInstance(EditorName);
return(oEditor.EditorDocument.body.innerText);
}

設(shè)置編輯器中內(nèi)容
復(fù)制代碼 代碼如下:

function SetEditorContents(EditorName, ContentStr)
{
var oEditor = FCKeditorAPI.GetInstance(EditorName) ;
oEditor.SetHTML(ContentStr) ;
}

FCKeditor 插件開發(fā)

相關(guān)文章

最新評(píng)論