小编alb*_*i07的帖子

如何使用工具栏选项在Quill js上添加字体类型?

我用Quill js创建了一个富文本区域.我有工具栏的下一个选项:

new Quill('#quilljs-container', {
    modules: {
        toolbar: [
           ['bold', 'italic', 'underline', 'strike'],        // toggled buttons
           ['blockquote', 'code-block', 'link'],

           [{ 'header': 1 }, { 'header': 2 }],               // custom button values
           [{ 'list': 'ordered'}, { 'list': 'bullet' }],
           [{ 'script': 'sub'}, { 'script': 'super' }],      // superscript/subscript
           [{ 'indent': '-1'}, { 'indent': '+1' }],          // outdent/indent
           [{ 'direction': 'rtl' }],                         // text direction

           [{ 'color': [] }, { 'background': [] }],          // dropdown with defaults from theme
           [{ …
Run Code Online (Sandbox Code Playgroud)

javascript jquery fonts quill

9
推荐指数
4
解决办法
1万
查看次数

标签 统计

fonts ×1

javascript ×1

jquery ×1

quill ×1