CKeditor 启用 Html 实时代码编辑
如何在 CKEditor 中启用实时 HTML 代码编辑。我尝试这样做并搜索了文档,但无法找到它。有没有可能在CK编辑器中做到这一点。
How to enable Live HTML Code Edit in CKEditor. I have tried doing this and searched the documentation, but was unable to find it. Is there any possible way to do it in CK editor.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你可以制作一个插件,它会使用 CKEditor 的 getData 方法来为你提供 html 数据,
将其显示在文本区域或其他内容中,
然后你可以编辑它,然后使用 setData 将其设置回编辑器。
i guess u can make a plugin which would use the getData method of CKEditor to give u the html data,
Display it in a textarea or something,
then u could edit it and then use setData to set it back to the editor.