[心得] FCKeditor_2.4.3 使用心得

看板Ruby作者 (台中喵小咩)時間17年前 (2007/08/23 19:16), 編輯推噓1(100)
留言1則, 1人參與, 最新討論串1/3 (看更多)
前面看到有人在問這個 把我用過的經驗說一下 我沒有去安裝什麼 plugin 我直接去官方下載 FCKeditor_2.4.3.zip 回來 解壓縮到 /public/javascript 裡 主要只須要 .js 檔和 一個目錄 editor 長的像這樣: /public/javascript/editor <-- 這是目錄 /public/javascript/fckconfig.js fckeditor.js fckpackager.xml .... 然後呢...在你想要應用的地方 xxx.rhtml 裡... 寫下面這段: <script type="text/javascript"> <!-- var sBasePath = '/javascripts/'; var sSkin = 'office2003'; var oFCKeditor = new FCKeditor( 'FCKeditor1', '100%', '400' ) ; oFCKeditor.BasePath = sBasePath ; var sSkinPath = sBasePath + 'editor/skins/' + sSkin + '/' ; oFCKeditor.Config['SkinPath'] = sSkinPath ; oFCKeditor.Config['PreloadImages'] = sSkinPath + 'images/toolbar.start.gif' + ';' + sSkinPath + 'images/toolbar.end.gif' + ';' + sSkinPath + 'images/toolbar.bg.gif' + ';' + sSkinPath + 'images/toolbar.buttonarrow.gif' ; oFCKeditor.Value = '這是預設值' ; oFCKeditor.Create() ; //--> </script> 就可以用漂亮的 fckeditor 了 別忘了...在網頁最前面要加上 <%= javascript_include_tag "fckeditor" %> 然後 fckconfig.js 有些路徑可能要改一下 這樣的好處應該是..不用管你的 Rails 是什麼版本 如果安裝後不能用..也不會影響到你原來的程式.. 由於 Rails 是很難換版本的...所以不建議用 plugin -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 218.170.230.43 ※ 編輯: shelary 來自: 218.170.230.43 (08/23 19:20) ※ 編輯: shelary 來自: 218.170.230.43 (08/23 19:24)

08/23 19:38, , 1F
好久沒見心得文 XD
08/23 19:38, 1F
文章代碼(AID): #16pMnvkE (Ruby)
文章代碼(AID): #16pMnvkE (Ruby)