当我从源视图切换到wysiwyg时,它会剥离我的h1类和其他内联的东西,我已经环顾四周并启用了config.allowedContent = true;在配置文件中,但这不能解决问题,我该如何解决?
由于
答案 0 :(得分:1)
好的,我在config.js文件中找到了解决方案,只需添加以下行:
CKEDITOR.config.allowedContent = true;
不要在里面添加bolean更改
CKEDITOR.editorConfig = function(config){
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = '#AADC6E';
};
我在那里用config.allowedContent = true添加它;那不起作用。