php – 停止CKEditor删除div

前端之家收集整理的这篇文章主要介绍了php – 停止CKEditor删除div前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我网站的后端安装了CKEditor.
代码视图切换到wysiwyg视图时,我遇到了以下问题.
我插入的代码如下:
<div class="span4">
    <p>Some text here</p>
</div>

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

任何人都可以帮我解决这个问题吗?我不介意留在代码视图中,但我喜欢在视图模式下工作来编写更长的文本.

提前致谢.

而不是禁用ACF功能,请使用 config.extraAllowedContent
editor.config.extraAllowedContent = 'div(span4)';

要么

editor.config.extraAllowedContent = 'div(*)';
原文链接:https://www.f2er.com/php/134553.html

猜你在找的PHP相关文章