首先下载fckeditor插件
[url]http://rubyforge.org/projects/fckeditorp[/url] 上下载一个压缩包,注意选择版本,推荐选择最新的,但是如果安装时出现问题时,注意rails与fckeditor的版本兼容问题。
解压,改名为fckeditor,然后执行
rake fckeditor:install
如果安装成果的话,使用方法如下:
在要使用富文本编辑器的页面上声明
<%= javascript_include_tag :fckeditor %>
用下面的代码替换原先的text_area标签:
<%= fckeditor_textarea("object", "field", { :toolbarKit => 'Simple', :width => '100%', :height => '200px' }) %>
-----关于它的ajax用法,可以参考插件中的RM文件
本文转自 fsjoy1983 51CTO博客,原文链接:http://blog.51cto.com/fsjoy/104631,如需转载请自行联系原作者