gpt4 book ai didi

javascript - Summernote - 段落按钮未显示用于选择组件的下拉菜单

转载 作者:行者123 更新时间:2023-11-30 19:30:05 25 4
gpt4 key购买 nike

我正在使用 Summernote 富文本编辑器。 “段落”按钮不提供下拉菜单,因此我无法选择缩进和取消缩进功能。

我是缺少 cdn 还是有其他问题?

我的代码是:

HTML:

<!-- Text Editor -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.10/summernote-bs4.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.10/summernote-bs4.js"></script>

<div class="row">
<div class="row col-lg-12 col-md-12 col-sm-12 col-xs-12">
<label class="control-label control-label-left col-lg-12 col-md-12 col-sm-12 col-xs-12" for="atHome">At Home:</label>
<textarea class="summernote" id="atHome" name="atHome" rows="3"></textarea>
</div>
</div> <!-- Row -->

JS:

$(document).ready(function() {
$('#atHome').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']]
]
});
});

最佳答案

$(document).ready(function() {
$('#atHome').summernote({

toolbar: [
// [groupName, [list of button]]
['style', ['style']],
['style', ['bold', 'italic', 'underline', 'clear']],
['font', ['strikethrough', 'superscript', 'subscript']],
['fontsize', ['fontsize']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['height', ['height']],
['fontname', ['fontname']],
['table', ['table']],
['insert', ['link', 'picture', 'video']],
['view', ['fullscreen', 'codeview', 'help']]
]
});
});

检查使用上面的这个是否对我有用,如果您的代码不起作用,请检查控制台是否有错误。

关于javascript - Summernote - 段落按钮未显示用于选择组件的下拉菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56512383/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com