如何在CKEditor中创建自闭合元素?

发布于 2024-12-03 21:55:43 字数 237 浏览 1 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

舞袖。长 2024-12-10 21:55:43

啊找到了,您必须将控件名称添加到 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;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文