[心得] FCKeditor_2.4.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
08/23 19:38, 1F
討論串 (同標題文章)
Ruby 近期熱門文章
PTT數位生活區 即時熱門文章