Quill 文本编辑器

一款开源的文本编辑器 Quill

源码地址:https://github.com/quilljs/quill

官网地址:https://quilljs.com/

快速开始

复制下面代码到 html 文件中。

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>quilljs 文本编辑器</title>
    <!-- Include Quill stylesheet -->
    <link href="https://cdn.quilljs.com/1.0.0/quill.snow.css" rel="stylesheet" />
</head>

<body>
    <!-- Create the toolbar container -->
    <div id="toolbar">
        <button class="ql-bold">Bold</button>
        <button class="ql-italic">Italic</button>
    </div>

    <!-- Create the editor container -->
    <div id="editor">
        <p>Hello World!</p>
    </div>
    <!-- Include the Quill library -->
    <script src="https://cdn.quilljs.com/1.0.0/quill.js"></script>

    <!-- Initialize Quill editor -->
    <script>
        var editor = new Quill('#editor', {
            modules: { toolbar: '#toolbar' },
            theme: 'snow',
        });
    </script>
</body>

</html>

效果图

在这里插入图片描述

posted @ 2023-09-14 20:43  辰梦starDream  阅读(57)  评论(0编辑  收藏  举报  来源