Ckeditor破页css web

时间:2017-07-25 22:59:08

标签: javascript html ckeditor wysiwyg

我使用ckeditor,我从数据库中读取一个模板,其中包含html代码css和js

问题在于使用时:

CKEDITOR.replace ('description');

模板的css代码与网页代码合并,然后网页采用我从模板中读取的样式并打破样式。

我应该做的是,ckeditor只接受他的CSS,而不是网页。

我的配置是:

CKEDITOR.editorConfig = function( config ) {
    config.toolbarGroups = [
        { name: 'clipboard',   groups: [ 'clipboard', 'undo' ] },
        { name: 'editing',     groups: [ 'find', 'selection', 'spellchecker' ] },
        { name: 'links' },
        { name: 'insert' },
        { name: 'forms' },
        { name: 'tools' },
        { name: 'document',    groups: [ 'mode', 'document', 'doctools' ] },
        { name: 'others' },
        { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
        { name: 'paragraph',   groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
        { name: 'styles' },
        { name: 'colors' },
        { name: 'about' }
    ];
    config.removeButtons = 'Underline,Subscript,Superscript';
    config.format_tags = 'p;h1;h2;h3;pre';
    config.removeDialogTabs = 'image:advanced;link:advanced';
};

任何人都可以帮助我吗?

由于

0 个答案:

没有答案