再会。
在我的代码中,我有行<ul class="myclass">
,但在 CKEDITOR 上复制后,我有<ul>
没有类的行myclass
。
请告诉我如何禁用元素 ul、li 和 div 的过滤器代码?
再会。
在我的代码中,我有行<ul class="myclass">
,但在 CKEDITOR 上复制后,我有<ul>
没有类的行myclass
。
请告诉我如何禁用元素 ul、li 和 div 的过滤器代码?
你需要搜索一下。更多的。如果您在 Stackoverflow 上查找 CKEditor 问题。大约 30% 用于内容过滤。
有关此外观的所有支持:http: //docs.ckeditor.com/#!/guide/ dev_advanced_content_filter
或将以下行放入您的配置中以禁用内容过滤器。(最好配置一下)
CKEDITOR.config.allowedContent = true;
编辑:
如果将它放在编辑器文件中,它将如下所示:
CKEDITOR.editorConfig = function( config )
{
config.allowedContent = true;
};
接受的答案会禁用所有内容过滤。更有针对性的方法是配置extraAllowedContent
指定您希望允许 ul、li 和 div 标签具有任何类。您可以将此行添加到 config.js 文件中:
config.extraAllowedContent = 'ul li div(*)';
更多信息: