CKEditor 中 Iframe 的名称或 id
我正在尝试为 CKEditor 创建一个插件。当 ckeditor 为我们想要转换为富文本编辑器的每个文本区域创建 Iframe 时,我想知道该 iframe 的名称或 id。 我怎样才能得到它。
帮助将不胜感激。
问候
帕明德
I am trying to create a plugin for CKEditor. As ckeditor creates Iframe for each textarea we want to convert as rich text editor, I want to know the name or id of that iframe.
How would I get it.
Help will be appreciated.
Regards
Parminder
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Firebug,您会看到 iframe 没有 id 或名称。相反,您应该获取
editor.document.$
并从该点移动,例如editor.document.$.defaultView.frameElement
If you use Firebug you'll see that the iframe doesn't have an id or name. Instead you should get the
editor.document.$
and move from that point, for exampleeditor.document.$.defaultView.frameElement