ckeditor 文本区域的默认样式或类

发布于 2024-10-21 04:41:33 字数 626 浏览 5 评论 0原文

有谁知道我如何在 ckeditor 对象中创建我的文本区域,使用类或自定义样式,以便我可以向用户显示类似于网站中呈现的内容?

谢谢

所以我在配置对象中使用 bodyClass: 'class' ,我使用 firebug 并看到 iframe 主体应用了我的类,但它既没有从我的 CSS 中获取类属性,也没有从 content.css 中获取类属性(ckeditor )...

好吧,我能够做到这一点,向对象添加一个事件,如下所示:

editor.on('instanceReady', function(){
        $('#'+divname).find('iframe:first').contents().find('body').css({
                'background-color':'#000000',
                'font-family':'arial',
                'font-size':'12pt',
                'color':'#cdcdcd'
        });
    });  

如果有人有真正的解决方案,我认为 bodyClass 应该是它,我会很乐意更改我的代码。

谢谢

Does anyone know how i can make my textarea in a ckeditor object, use a class or custom style so i can show to the user something similar to what is getting rendered in the site?

Thanx

So i'm using bodyClass: 'class' in the config object, i use firebug and see the iframe body has my class applied, but it doesn't get the classes properties neither from my CSS, nor from contents.css (ckeditor)...

Well i was able to do it, adding an event to the object like this:

editor.on('instanceReady', function(){
        $('#'+divname).find('iframe:first').contents().find('body').css({
                'background-color':'#000000',
                'font-family':'arial',
                'font-size':'12pt',
                'color':'#cdcdcd'
        });
    });  

if anyone has the real solution, i think bodyClass should be it, i will gladly change my code.

Thanx

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

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

发布评论

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

评论(1

岁月蹉跎了容颜 2024-10-28 04:41:33

只需编辑位于 content.css 的 css 文件 - 将 .cke_editable 类编辑为适合您需要的内容。 24/7 工作

Simply edit the css file located at contents.css - edit the .cke_editable class to whatever suits your needs. Works 24/7

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