作者shelary (台中喵小咩)
看板Ruby
标题[心得] FCKeditor_2.4.3 使用心得
时间Thu Aug 23 19:16:08 2007
前面看到有人在问这个
把我用过的经验说一下
我没有去安装什麽 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)
1F:推 godfat:好久没见心得文 XD 08/23 19:38