Notice
Recent Posts
Recent Comments
Link
목록CKEditor (2)
이야기앱 세상
CKEditor5에서 값을 읽기, 셋팅하기(또는 초기화)
CKEditor5에서 입력하는 값을 읽거나 값을 셋팅하기 위해서는 에디터 사용시 명시하는 script를 살펴보자 아래 명시한 스크립트에서 window.editor = editor; 라는 표현이 있는데 editor 를 window.editor에 대입하고 있다. 따라서 값을 읽을 때는 window.editor.getData()를 사용하고 값을 셋팅할 때는 window.editor.setData()를 사용하면 됩니다. 예를 들어 입력한 데이터를 초기화하고 싶으면 window.editor.setData(''); 라고 명시하면 초기화 된다.
IT/JavaScript
2022. 8. 29. 17:15
CKEditor5 다운로드 및 사용법
CKEditor5 다운로드 및 사용법 CKEditor는 게시판에서 글자의 크기, 굵기, 글씨체 지정, 표 작성, 이미지 업로드 처리 등 게시판에 글 작성을 편하게 해주는 기능을 제공해준다. CKEditor5 웹사이트 https://ckeditor.com/ckeditor-5/ Rich text editor of tomorrow | CKEditor 5 Easy to customize rich text editor with a powerful framework, a modular architecture, and modern features like collaborative editing. ckeditor.com CKEditor5 설치 예시 CKEditor5 다운로드하기 https://ckeditor.com/c..
IT/JavaScript
2020. 12. 28. 10:05