Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- tomcat log
- katalon xpath
- katalon 자동화
- CSTS 폭포수 모델
- 해외주식 양도세 신고
- recursion example
- katalon 비교
- 톰캣 실시간 로그
- 피보나치함수 예제
- 한국투자증권 양도세 신고
- 한국투자증권 해외주식 양도세
- bfs 미로탐색 java
- java.sql.SQLSyntaxErrorException
- 피보나치 예제
- Katalon Recorder 사용법
- 피보나치함수
- 테스트 자동화
- katalon 사용법
- 최대공약수 예제
- 국세청 해외주식 양도세 신고방식
- 홈택스 해외주식 양도세
- javascript 자동완성
- git 연동
- 재귀함수 예제
- 재귀 예제
- katalon
- oracle group by
- 주식 양도세 신고방법
- 해외증권 양도세 한국투자증권
- js 자동완성
Archives
- Today
- Total
엄지월드
CK Editor5 글 수정 본문
[문제]
CK Editor5를 적용해서 글쓰기는 성공했지만,
수정 시에 document.getElementById("editor").value;로 값을 읽어오지 못하는 현상이 있었다.
그래서 CK Editor Document를 확인해보니 다른 방법으로 처리하고 있었다.
[해결 방법]
에디터가 생성되기 전에 let editor로 선언한 후에
then 흐름을 통해 let editor에 newEditor 객체를 집어넣는다.
그 후에 submit 이벤트가 발생했을 때에 editor.getDat()로 읽어오면 수정한 데이터를 읽어올 수 있다.
let editor;
ClassicEditor
.create( document.querySelector( '#editor' ) )
.then( newEditor => {
editor = newEditor;
} )
.catch( error => {
console.error( error );
} );
// Assuming there is a <button id="submit">Submit</button> in your application.
document.querySelector( '#submit' ).addEventListener( 'click', () => {
const editorData = editor.getData();
// ...
} );
Reference > CK Document Link
'Front' 카테고리의 다른 글
javascript checkbox 값 가져오기 (0) | 2023.01.10 |
---|---|
CSS 버튼 색 추가 (0) | 2022.11.24 |
An invalid form control with name='contents' is not focusable. (0) | 2022.08.23 |
로딩바 만들기 (0) | 2022.07.27 |
table tr 제거 (0) | 2022.07.27 |
Comments