Summernote给予自定义工具栏选项,如
$('#summernote').summernote({
toolbar: [
// [groupName, [list of button]]
['style', ['bold', 'italic', 'underline', 'clear']],
['font', ['strikethrough', 'superscript', 'subscript']],
['fontsize', ['fontsize']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['height', ['height']]
]
});
与设置h1、h2等相比
$(".summernote").summernote({
styleTags: ['h1', 'h2']
});
但是如何把两者用在同一个方法上呢?
$('#summernote').summernote({
styleTags: ['h1', 'h2'],
toolbar: [
// [groupName, [list of button]]
['style', ['bold', 'italic', 'underline', 'clear']],
['font', ['strikethrough', 'superscript', 'subscript']],
['fontsize', ['fontsize']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['height', ['height']]
]
});
我已经尝试了多个变化,但没有工作
2条答案
按热度按时间von4xj4u1#
你应该在你的btns组中添加"样式"按钮。
请尝试以下代码。
rslzwgfq2#