Javascript

써머노트(Summernote)

오시리엔 2023. 11. 9. 09:32
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>써머노트(Summernote)</title>
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
  </head>
  <body>
    <textarea id="summernote"></textarea>
    <script>
      $('#summernote').summernote({
        placeholder: 'Hello stand alone ui',
        tabsize: 2,
        height: 120,
        toolbar: [
          ['style', ['style']],
          ['font', ['bold', 'underline', 'clear']],
          ['color', ['color']],
          ['para', ['ul', 'ol', 'paragraph']],
          ['table', ['table']],
          ['insert', ['link', 'picture', 'video']],
          ['view', ['fullscreen', 'codeview', 'help']]
        ]
      });
    </script>
  </body>
</html>

'Javascript' 카테고리의 다른 글

파일 업로드2  (0) 2023.11.13
파일 업로드  (0) 2023.11.10
이미지 슬라이더(Swiper)  (1) 2023.11.08
차트2 (ajax)  (0) 2023.11.07
차트  (0) 2023.11.06