标签: html tags ckeditor
如何禁用CKeditor删除像<div>这样的标签,因为它认为不需要但我需要它?
<div>
感谢。
答案 0 :(得分:3)
假设您已经像这样定义了编辑器:
var editor = CKEDITOR.replace( 'editor1' );
然后添加此配置:
editor.config.allowedContent = true;
或强>
config.js
,只需添加此
config.allowedContent = true;