Cck 编辑器appendTo 不起作用

发布于 2025-01-07 00:33:35 字数 259 浏览 1 评论 0原文

我正在使用 ckeditor 3.6.2 ,一切正常,只是我无法向编辑器附加任何内容,这是我的代码,

        CKEDITOR.appendTo( 'post_content','<pre class="html"></pre>' );

它不会在 firebug 控制台上给我任何错误,但它也没有向文本区域附加任何内容,尝试查看它在 ckeditor 文档上,但没有一个解决我的问题

谢谢

I am working with ckeditor 3.6.2 , everything works fine just i am not able to append anything to editor, here is my code

        CKEDITOR.appendTo( 'post_content','<pre class="html"></pre>' );

it does not gives me any error on firebug console but also it's not appending anything to the textarea, tried looking it on ckeditor documentation but none of them solved my problem

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

吹梦到西洲 2025-01-14 00:33:35

实际上我明白了,但我做错了...如果其他人也有同样的问题,请尝试此代码

        CKEDITOR.instances.post_content.insertText('<pre class="html"></pre>');

post_content 是您编辑器的 id

Actually i got it and i was doing it wrong... if anyone else has the same problem try this code

        CKEDITOR.instances.post_content.insertText('<pre class="html"></pre>');

post_content is the id of your editor

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