summernote字体大小不显示

时间:2015-03-02 08:42:19

标签: javascript html5 firefox summernote

我正在尝试使用summernote来显示文本编辑器。 我用这段代码来显示它:

$('#editor').summernote({
        toolbar: [
            ['style', ['style']],
            ['text', ['bold', 'italic', 'underline', 'color', 'clear']],
            ['para', ['ul', 'ol', 'paragraph']],
            ['height', ['height']],
            ['size', ['fontsize']],
            ['font', ['fontname']],
        ],
        fontsize: '18px',
        onblur: function() {
            var text = $('#editor').code();
            text = text.replace("<br>", " ");
            $('#description').val(text);
        },
        lang: language_value
    });

但只显示字体大小。 有没有其他方式来显示它?

3 个答案:

答案 0 :(得分:0)

它无法正常工作,因为api不允许您在配置/设置中传入fontsize参数。

这里是api docs

这是一个related SO question,其中有一个hack / workaround来设置它

答案 1 :(得分:0)

使用

['fontsize', ['fontsize']],

而不是

['size', ['fontsize']],

更新:您的代码似乎工作得很好https://jsfiddle.net/ymef5xac/

答案 2 :(得分:0)

fontsize功能与summernote合并。

参考https://github.com/summernote/summernote/pull/1028

下载最新的夏令时版(0.6.6)