我阅读了更多关于如何允许ckeditor接受所有属性以及如何修复它的文章,但我仍然有问题。 ckeditor删除样式属性。 我试图证明文字或改变颜色,....;
这就是我的所作所为:
的CKEditor / config.js
/**
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ) {
config.allowedContent = true;
config.extraAllowedContent = 'style;*[id,rel](*){*}';//
config.removeFormatAttributes = '';
};
但是当我将数据插入数据库时,我看到:
<p [removed] center;">
我读了[CKEditor strips inline attributes
[1]:CKEditor strips inline attributes以及更多选项,例如config.extraAllowedContent = '*{*}';
,但仍然没有运气。
有什么建议吗?