如何在CKEditor中创建自闭合元素?
我想在 CKeditor 中创建一个自定义自关闭节点,有办法做到这一点吗? 到目前为止我的代码:
this.videoElement = editor.document.createElement('cfwvideo');
this.videoElement.setAttribute('src', videoSource);
editor.insertElement(this.videoElement);
I want to create a custom self closing node in CKeditor, is there a way to do this?
My code so far:
this.videoElement = editor.document.createElement('cfwvideo');
this.videoElement.setAttribute('src', videoSource);
editor.insertElement(this.videoElement);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊找到了,您必须将控件名称添加到 CKEDITOR.dtd 中的 $empty 列表中,如下所示:
CKEDITOR.dtd.$empty['cfwvideo'] = 1;
Ah found it, you'll have to add the control name to the $empty list in CKEDITOR.dtd like this:
CKEDITOR.dtd.$empty['cfwvideo'] = 1;