Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用标准演示,就像这样。因此,可以将主要选项(小的更改)标记为config.js.
config.js
通过源代码 HTML(按钮Source )编辑时的示例:具有类属性的元素(标签),丢失了属性(class已被剥离)。
class
那么,如何禁用“默认过滤器”呢?
“默认过滤”行为是一个问题:不向后兼容,并且主要不是预期的行为,因为破坏了原始内容,您只能使用编辑器进行更改。
类似的问题:
CKeditor allowedContent 行为异常
CKEditor 类被剥离
在config.js你可以添加类似的东西,
CKEDITOR.config.allowedContent=true;
请参阅“高级内容过滤器”(ACF)以及如何启用/禁用它。
我们最近遇到了这个问题,2017 版本 5.5 为 CKEditor 开发了一个文件加载/保存插件和一个语音识别插件(正在进行中)。上述解决方案有所帮助,但我们还必须使用 editor1.setData() 将内容加载到编辑器中。
使用全选和 insertHTML() 或 insertText() 方法会破坏标签。