https://ckeditor.com/
적용방법
<script src="/lib/ckeditor/ckeditor.js"></script>
<script>
CKEDITOR.replace( 'description' ); //가져오는 api 'description'은 textarea name="description" 교체한다라는 뜻
</script>
예제소스
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <form name="form1" action="up_proc.php" method="post" > <input type="text" name="title" placeholder="제목"><br> <textarea name="description" placeholder="본문" rows="15"></textarea><br> <input type="submit" value="전송"> </form> <script src="/ckeditor/ckeditor.js"></script> <script> CKEDITOR.replace( 'description' ); //가져오는 api 'description'은 textarea name="description" 교체한다라는 뜻 </script> | cs |
'개발도구(웹)' 카테고리의 다른 글
부트스트랩 (0) | 2018.11.23 |
---|---|
자바스크립트 그래프(JqPlot) (0) | 2018.11.23 |
Mac용 mysql 관리툴 Sequel Pro (0) | 2018.11.23 |
Mac에서 MAPM(Apache, PHP, MySQL) 활용 (0) | 2018.11.23 |
CSS버튼 라이브러리 (0) | 2018.11.22 |