编程语言
首页 > 编程语言> > javascript – Summernote设置默认字体大小和字体

javascript – Summernote设置默认字体大小和字体

作者:互联网

我正在使用最新版本的summernote库.我如何设置默认字体大小和字体?
我正在尝试这样,但它不起作用:

 $('.text-editor').summernote({
        toolbar: [
            ['style', ['style']],
            ['font', ['bold', 'italic', 'underline', 'superscript', 'subscript', 'strikethrough', 'clear']],
            ['fontname', ['fontname']],
            ['fontsize', ['fontsize']],
            ['color', ['color']],
            ['para', ['ul', 'ol', 'paragraph']],
            ['height', ['height']],
            ['table', ['table']],
            ['insert', ['link', 'picture', 'video', 'hr']],
            ['view', ['codeview']]
        ],
        fontsize: '16'
    });

https://jsfiddle.net/dtgr5q29/142/

解决方法:

一个可能的解决方案是使用jQuery直接将font-size样式应用于编辑器div

$('.active-textcontainer').summernote({
    toolbar: [
        ['style', ['bold', 'italic', 'underline']],
        ['fontsize', ['fontsize']],
        ['color', ['color']],
        ['para', ['ul', 'ol', 'paragraph']]
    ],
     height:150
});

$('.note-editable').css('font-size','18px');

更多.. How to set font-size in summernote?

谢谢

标签:javascript,summernote
来源: https://codeday.me/bug/20190823/1699796.html