如何禁用CKeditor删除标签

时间:2012-07-27 10:30:07

标签: html tags ckeditor

如何禁用CKeditor删除像<div>这样的标签,因为它认为不需要但我需要它?

感谢。

1 个答案:

答案 0 :(得分:3)

假设您已经像这样定义了编辑器:

var editor = CKEDITOR.replace( 'editor1' );

然后添加此配置:

editor.config.allowedContent = true;

config.js

,只需添加此

即可
config.allowedContent = true;