CKEditor ( 웹에디터 / 위지위그 리치 텍스트 에디터 / HTML 편집기 ) |
CKEditor ( CK에디터 )
홈페이지 : https://ckeditor.com/
나도 처음 써본다.
일단, 위 홈페이지 접속후에 하단에 보면 CKEditor 5와 CKEditor 4 가 있다.
위키백과에 CKEditor 을 검색해보면 아래와 같은 내용이 적혀 있다.
[CKEditor 4]
CKEditor 4는 구글 크롬, 모질라 파이어폭스, 사파리, 마이크로소프트 엣지, 오페라, 인터넷 익스플로러 10과 11의 최신 안정판을 포함한 대부분의 인터넷 브라우저와 완전히 호환된다. 모바일 환경에서는 사파리(iOS6 이상)와 크롬(안드로이드)와 대체적으로 호환된다.
[CKEditor 5]
CKEditor 5는 구글 크롬, 파이어폭스, 사파리, 오페라, 마이크로소프트 엣지와도 호환된다. 그러나 인터넷 익스플로러 11은 아직 지원하지 않는다.
출처 : https://ko.wikipedia.org/wiki/CKEditor
CKEditor ( CK에디터 ) - 선택
파일을 다운받아서 사용할 수도 있지만, 처음이니 간단하게 맛보기를 해보자.
아래 링크를 통하면 CKEditor CDN 이라는 것이 있다.
CKEditor 4 : https://ckeditor.com/ckeditor-4/download/
CKEditor CDN
CKEditor CDN comes with SSL support and provides over 50 edge locations on 6 continents around the world.
총 세가지 버전이 있다.
Basic Package
<script src="//cdn.ckeditor.com/4.9.2/basic/ckeditor.js"></script>
Standard Package
<script src="//cdn.ckeditor.com/4.9.2/standard/ckeditor.js"></script>
Full Package
<script src="//cdn.ckeditor.com/4.9.2/full/ckeditor.js"></script>
CKEditor ( CK에디터 ) - 적용
1 2 3 4 5 6 7 8 9 10 | <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> | cs |
소스코드 복사해서 붙여넣기하면 끝이다. 끝~!
'Programing (프로그래밍) > PHP 및 그누보드' 카테고리의 다른 글
NotePad++ 노트패드++ 설치 및 셋팅 하기 & 단축키 & PHP (0) | 2022.06.28 |
---|---|
HTML - Table 기본구조 ( 테이블 표 caption figure figcaption table thead tbody tfoot tr th td ) (0) | 2022.06.06 |
홈페이지 기초 기본 초급 html php (1) | 2019.09.08 |
PHP - MySQL DB 다루기 ( 데이터베이스 / 디비 / database / mysql_fetch_assoc / Colum / Colums / 칼럼 ) (0) | 2018.11.15 |
PHP - phpMyAdmin WebMysql 에 CSV 엑셀 파일 업로드 입력하기 ( Excel / Upload / data / 데이터 / 데이타 ) (0) | 2018.11.11 |
vscode ( visual studio code / vs코드 / 비주얼 스튜디오 코드 / 소스 코드 편집기 ) (0) | 2018.04.26 |
아톰 ATOM 에디터 설치 및 설정 (0) | 2018.04.25 |
HTML TOUCH 확대/축소 하기 ( JS / 멀티터치 / multi touch ) (0) | 2018.03.27 |