我想知道这是否可能以及如何启用 CKEditor4 内联/内容编辑功能<span>
和其他内联元素。这是我在官方文档中找不到的东西。
使用此标记:
<span id="editable" contenteditable="true"></span>
以及标准配置(启用 AutoInline)或此配置:
<script>
CKEDITOR.disableAutoInline = true;
CKEDITOR.inline('editable'); // ID of the element to edit
</script>
报错:标签The specified element mode is not supported on element: "span".
报同样的错误。<a>