删除格式按钮消失(CKEditor5)
remove format button is dissapeard (CKEditor5)
我正在使用 Bootstrap-4
和 CKEditor5
。我有一个项目,我在文本区域上方使用了 Framwork - 现在我回到它并看到 REMOVE FORMAT - button
消失了。
我正在查看 CKEditor5
(URL: https://ckeditor.com/docs/ckeditor5/latest/features/remove-format.html) 的主页,发现 remove format - button
仍然存在,但不在我的项目中,你可以见下文:
在网站上:
在我的项目中:
我该如何解决这个问题?
附加信息:我在我的项目中加载它如下:
<script src="https://cdn.ckeditor.com/ckeditor5/25.0.0/classic/ckeditor.js"></script>
<script>
ClassicEditor
.create(document.querySelector('#id'))
.catch(error => {
console.error(error);
});
</script>
您似乎从演示中使用了默认的经典编辑器,没有“删除格式”..
如果您看到的演示没有这样的图标。
https://ckeditor.com/docs/ckeditor5/latest/examples/builds/classic-editor.html
您必须进行自定义构建并包含该插件,或者如果它是默认构建的一部分,请通过自定义将其添加到您的工具栏。
在此处的在线构建器中:https://ckeditor.com/ckeditor-5/online-builder/“删除格式”不是标准构建的一部分,因此请添加它,它会显示在您的工具栏中。
我正在使用 Bootstrap-4
和 CKEditor5
。我有一个项目,我在文本区域上方使用了 Framwork - 现在我回到它并看到 REMOVE FORMAT - button
消失了。
我正在查看 CKEditor5
(URL: https://ckeditor.com/docs/ckeditor5/latest/features/remove-format.html) 的主页,发现 remove format - button
仍然存在,但不在我的项目中,你可以见下文:
在网站上:
在我的项目中:
我该如何解决这个问题?
附加信息:我在我的项目中加载它如下:
<script src="https://cdn.ckeditor.com/ckeditor5/25.0.0/classic/ckeditor.js"></script>
<script>
ClassicEditor
.create(document.querySelector('#id'))
.catch(error => {
console.error(error);
});
</script>
您似乎从演示中使用了默认的经典编辑器,没有“删除格式”.. 如果您看到的演示没有这样的图标。 https://ckeditor.com/docs/ckeditor5/latest/examples/builds/classic-editor.html
您必须进行自定义构建并包含该插件,或者如果它是默认构建的一部分,请通过自定义将其添加到您的工具栏。
在此处的在线构建器中:https://ckeditor.com/ckeditor-5/online-builder/“删除格式”不是标准构建的一部分,因此请添加它,它会显示在您的工具栏中。