1 개요[ | ]
- CKEditor CDN 예제
2 예제 1[ | ]
html
Copy
<textarea name="editor1">안녕하슈</textarea>
<script src="https://cdn.ckeditor.com/4.9.2/standard/ckeditor.js"></script>
<script>
CKEDITOR.replace('editor1');
</script>
3 예제 2[ | ]
html
Copy
<textarea name="editor1">안녕하슈</textarea>
<script src="https://cdn.ckeditor.com/4.9.2/standard-all/ckeditor.js"></script>
<script>
CKEDITOR.replace('editor1', {
extraPlugins: 'codesnippet'
});
</script>
4 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.