我正在使用CKEditor 4.5,我希望在保存时禁用html格式。我只需要保存html。要在CKEditor中执行此操作,需要设置此设置为true。
CKEDITOR.config.allowedContent = true;
我在CK编辑器config.js文件中做了这个,如下所示。
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = '#AADC6E';
config.allowedContent = true;
};
这对我不起作用。我试过CKEditor 4.2.2 - allowedContent = true is not working,但它仍无效。
有人可以给我一个确切的例子或任何其他方法来解决这个问题。我只是不希望这个编辑器纠正我的HTML,我想保存它。
答案 0 :(得分:0)
发现了这个问题。它根本没有刷新浏览器缓存。
您始终需要刷新缓存并清理历史记录才能使更改生效。