Cckeditor:关于 dom 更改事件
是否可以挂钩在ckeditor的dom中创建元素的过程?例如,每次编辑器想要将 p 元素附加到 dom 中时,我想在附加元素之前在该元素上设置一些自定义属性。
Is it possible to hook into the process of creating elements in the dom of ckeditor? For example, every time the editor wants to append a p element into the dom, I would like to set some custom attributes on the element before it is appended.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在浏览规范时,我偶然发现了 dataprocessor,它将 dom 转换为html 并允许挂钩到构建元素的 html 的过程。
请注意每个 ckeditor 实例特定的数据处理器。
Going throught the specs I stumbled upon the dataprocessor, which transforms the dom into html and allows to hook into the process of building the element's html.
Mind that data processor in specific for each instance of ckeditor.