#author("2018-07-12T14:02:06+09:00","default:wikiwriter","wikiwriter") &tag(CKEditor/基本); *目次 [#x0e4df49] #contents *関連ページ [#l1e27759] *参考情報 [#bbba4b3b] #author("2018-07-12T14:26:14+09:00","default:wikiwriter","wikiwriter") *CKEdtior 4の基本的な使用方法 [#m1b9c7ce] -[[Quick Start Guide - CKEditor 4 Documentation:https://docs.ckeditor.com/ckeditor4/latest/guide/dev_installation.html]] -Standardパッケージをダウンロード。 -以下のリンクでサンプルを確認できる http://<your site="">/ckeditor/samples/index.html -CKEditorの組み込み。 #pre{{ <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>A Simple Page with CKEditor</title> <!-- Make sure the path to CKEditor is correct. --> <script src="../ckeditor.js"></script> </head> <body> <form> <textarea name="editor1" id="editor1" rows="10" cols="80"> This is my textarea to be replaced with CKEditor. </textarea> <script> // Replace the <textarea id="editor1"> with a CKEditor // instance, using default configuration. CKEDITOR.replace( 'editor1' ); </script> </form> </body> </html> }}