FCKeditor はリッチなオンライン エディタです、パソコンの初心者でも、Office の利用経験があれば楽にリッチなコンテンツを作ることができます。FCKeditor はオープンソースであり、Javaとの統合用のオープンソースファイルも提供されていますので、かなり便利です。Uprush の全てのコンテンツ画面は FCKeditor を使って作られたのです。
FCKeditor の公式サイトはこちら、demo はこちらです。
FCKeditor のインストールは簡単です。上記公式サイトから最新版をダウンロードして自分のサイトルートに解凍します。FCKeditor を取り込むページに以下のソースを追加します。
- <noscript><p><b>Javascript must be enabled to use this form.</b></p></noscript>
- <script type="text/javascript">
- <!--
-
-
-
- var sBasePath = ’fckeditor/’;
-
- var oFCKeditor = new FCKeditor( ’FCKeditor1’ ) ;
- oFCKeditor.BasePath = sBasePath ;
- oFCKeditor.Height = 600 ;
- oFCKeditor.Config ["DefaultLanguage"] = "Ja";
-
-
- oFCKeditor.Create() ;
-
- </script>
<noscript>
Javascript must be enabled to use this form.
公式サイトにもインストール ガイドがあります:http://wiki.fckeditor.net/Developer%27s_Guide/Installation。また、解凍されたファイルの_samplesフォルダの下にはサンプルがあります。 |