9

我已经在我的网站后端安装了 CKEditor。从代码视图切换到所见即所得视图时,我遇到了以下问题。我插入的代码如下:

<div class="span4">
    <p>Some text here</p>
</div>

当我切换回查看模式时,CKEditor 会自动删除段落周围的 div。

谁能帮我解决这个问题?我不介意留在代码视图中,但我确实喜欢在视图模式下工作以编写更长的文本。

提前致谢。

4

3 回答 3

11

就像 AlfonsoMl 所说,这与高级内容过滤器有关

有关此外观的所有支持:http: //docs.ckeditor.com/#!/guide/ dev_advanced_content_filter

或将以下行放入您的配置中以禁用内容过滤器。(最好配置一下)

CKEDITOR.config.allowedContent = true;
于 2013-05-29T07:07:22.473 回答
8

不要禁用 ACF 功能,而是使用config.extraAllowedContent

editor.config.extraAllowedContent = 'div(span4)';

或者

editor.config.extraAllowedContent = 'div(*)';
于 2013-05-29T07:37:35.727 回答
2
var editor1=CKEDITOR.replace('editor1');
editor1.config.allowedContent = true;
于 2016-03-10T09:41:16.527 回答