我在我网站的后端安装了CKEditor.
从代码视图切换到wysiwyg视图时,我遇到了以下问题.
我插入的代码如下:
从代码视图切换到wysiwyg视图时,我遇到了以下问题.
我插入的代码如下:
<div class="span4"> <p>Some text here</p> </div>
当我切换回查看模式时,CKEditor会自动删除段落周围的div.
任何人都可以帮我解决这个问题吗?我不介意留在代码视图中,但我喜欢在视图模式下工作来编写更长的文本.
提前致谢.
而不是禁用ACF功能,请使用
config.extraAllowedContent:
原文链接:https://www.f2er.com/php/134553.htmleditor.config.extraAllowedContent = 'div(span4)';
要么
editor.config.extraAllowedContent = 'div(*)';