向fckeditor編輯器插入指定代碼的方法
核心代碼
function insertHTMLToEditor(obj) { var oEditor = FCKeditorAPI.GetInstance("content"); if(oEditor.EditMode == FCK_EDITMODE_WYSIWYG) { oEditor.InsertHtml(obj) } else { return false; } }
使用Js獲取和更改FCKeditor編輯器里的內(nèi)容
之前在一個系統(tǒng)里使用了FCKeditor編輯器,由于項(xiàng)目需求需要在FCKeditor里添加一個自定義的按鈕用于實(shí)現(xiàn)自己的需求
主要是在點(diǎn)擊該按鈕時刪除或添加FCKeditor編輯器里的內(nèi)容
其實(shí)是一個很簡單的需求,本來以為在FCKeditor可以很容易的實(shí)現(xiàn)
在Google上搜索自定義按鈕,插件開發(fā),經(jīng)過近二個小時的摸索最終還是沒有實(shí)現(xiàn)不知是我太笨還是自定義插件太難啦
無奈只能通過JS方式來處理
1.在頁面中添加checkbox元素并綁定事件,選中該元素時將在FCKeditor內(nèi)容里添加"{#book#}"字符串(該字符串會在適當(dāng)?shù)臅r候被替換成其他內(nèi)容),取消選中時則刪除
<label><input type="checkbox" id="lineBook" onclick="chk_but();"/>添加/刪除復(fù)選框</label>
2.添加Js處理FCKeditor內(nèi)容(添加或刪除"{#book#}"字符串),'txtContent'為FCKeditor的ID控控件ID
<script type = "text/javascript" > //"添加/刪除復(fù)選框"點(diǎn)擊時如果按鈕選中則添加"{#book#}"字符串到FCK內(nèi)容里,反之刪除字符串 //lineBook為FCK的ID號 function chk_but() { if (window.FCKeditorAPI !== undefined && FCKeditorAPI.GetInstance('txtContent') !== undefined) { if (document.getElementById('lineBook').checked) { FCKeditorAPI.GetInstance('txtContent').EditorDocument.body.innerHTML += "{#book#}"; } else { FCKeditorAPI.GetInstance('txtContent').EditorDocument.body.innerHTML = FCKeditorAPI.GetInstance('txtContent').EditorDocument.body.innerHTML.replace("{#book#}", ""); } } } //end function chk_lineBook() //內(nèi)容里如果有{#book#}則選中"添加/刪除復(fù)選框" if (document.getElementById('txtContent').value.indexOf('{#book#}') >= 0 && window.FCKeditorAPI !== undefined && FCKeditorAPI.GetInstance('txtContent') !== undefined) { document.getElementById('lineBook').checked = true; } </script>
參考:
官網(wǎng):http://ckeditor.com/
獲取或更改內(nèi)容值:http://bbs.csdn.net/topics/360086762
創(chuàng)建插件:http://docs.cksource.com/FCKeditor_2.x/Developers_Guide/Customization/Plug-ins
JS操作Fckeditor的一些常用方法
//向編輯器插入指定代碼 function insertHTMLToEditor(codeStr){ var oEditor = FCKeditorAPI.GetInstance("content"); oEditor.InsertHtml(codeStr); // "html"為HTML文本 } //獲取編輯器中HTML內(nèi)容 function getEditorHTMLContents() { var oEditor = FCKeditorAPI.GetInstance("content"); return(oEditor.GetXHTML(false)); } // 獲取編輯器中文字內(nèi)容 function getEditorTextContents() { var oEditor = FCKeditorAPI.GetInstance("content"); return(oEditor.EditorDocument.body.innerText); } // 設(shè)置編輯器中內(nèi)容 function SetEditorContents(ContentStr) { var oEditor = FCKeditorAPI.GetInstance("content") ; oEditor.SetHTML(ContentStr) ; } //向編輯器插入指定代碼 function insertHTMLToEditor(codeStr){ var oEditor = FCKeditorAPI.GetInstance( "content "); if (oEditor.EditMode==FCK_EDITMODE_WYSIWYG){ oEditor.InsertHtml(codeStr); }else{ return false; } } //統(tǒng)計(jì)編輯器中內(nèi)容的字?jǐn)?shù) 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); } //執(zhí)行指定動作 function ExecuteCommand(commandName){ var oEditor = FCKeditorAPI.GetInstance( "content ") ; oEditor.Commands.GetCommand(commandName).Execute() ; }
有了這些函數(shù),剩下的就大家自行發(fā)揮了
相關(guān)文章
Highcharts使用簡例及異步動態(tài)讀取數(shù)據(jù)
Highcharts 是一個用純JavaScript編寫的一個圖表庫, 能夠很簡單便捷的在web網(wǎng)站或是web應(yīng)用程序添加有交互性的圖表,并且免費(fèi)提供給個人學(xué)習(xí)、個人網(wǎng)站和非商業(yè)用途使用,通過本文給大家介紹Highcharts使用簡例及異步動態(tài)讀取數(shù)據(jù)的相關(guān)知識,感興趣的朋友一起學(xué)習(xí)吧2015-12-12JavaScript設(shè)置彈出式獨(dú)立窗口頁面和window的方法舉例詳解
window.open是網(wǎng)頁中經(jīng)常遇到的彈出窗口代碼,不是網(wǎng)絡(luò)中比較反感的那類彈出代碼,下面這篇文章主要給大家介紹了關(guān)于JavaScript設(shè)置彈出式獨(dú)立窗口頁面和window的方法,需要的朋友可以參考下2024-01-01axios攔截器機(jī)制的實(shí)現(xiàn)原理詳解
axios 不僅提供了一套跨平臺請求,另外還提供了“攔截器”這一中間件機(jī)制,方便你在請求之前、響應(yīng)之后做些操作處理,本文給大家詳細(xì)介紹了axios 攔截器機(jī)制是如何實(shí)現(xiàn)的,需要的朋友可以參考下2024-05-05使用html+js+css 實(shí)現(xiàn)頁面輪播圖效果(實(shí)例講解)
下面小編就為大家?guī)硪黄褂胔tml+js+css 實(shí)現(xiàn)頁面輪播圖效果(實(shí)例講解)。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-09-09JavaScript實(shí)現(xiàn)的石頭剪刀布游戲源碼分享
這篇文章主要介紹了JavaScript實(shí)現(xiàn)的石頭剪刀布游戲源碼分享,挺好玩的小游戲,關(guān)鍵在一些算法上,需要的朋友可以參考下2014-08-08