我正在尝试使用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
});
但只显示字体大小。 有没有其他方式来显示它?
答案 0 :(得分:0)
它无法正常工作,因为api不允许您在配置/设置中传入fontsize
参数。
这里是api docs
这是一个related SO question,其中有一个hack / workaround来设置它
答案 1 :(得分:0)
使用
['fontsize', ['fontsize']],
而不是
['size', ['fontsize']],
更新:您的代码似乎工作得很好https://jsfiddle.net/ymef5xac/
答案 2 :(得分:0)