- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我为 ckeditor 创建了一个自定义图像浏览器/ uploader 插件。我在集成 advanced content filter 时遇到一些问题
基本上发生的事情是我在对话框选项卡上有一个字段,允许用户编辑图像的内联样式。这看起来工作正常,因为样式被添加到 img 标签中,并且在保存到数据库后,并且在查看生成的 html 时,图像的样式正确。然而,当您再次编辑文档时,CKeditor 已删除样式属性。
在plugin.js中,我设置 allowedContent 属性以包含样式属性
editor.addCommand( 'sbImageDialog', new CKEDITOR.dialogCommand( 'sbImageDialog',
{allowedContent: 'img[src][style]', requiredContent: 'img[src]' }
));
在对话框js中,我定义了一个名为“高级”的选项卡,需要允许样式属性才能显示
{
id: 'advanced',
label: 'Advanced',
elements: [
{
type: 'text',
id: 'style',
label: 'Style',
requiredContent: 'img[style]',
setup: function( element ) {
this.setValue( element.getAttribute('style') );
},
commit: function ( element ) {
var style = this.getValue();
if ( style )
element.setAttribute( 'style', style );
else if ( !this.insertMode )
element.removeAttribute( 'style' );
}
},
]
}
由于该选项卡确实显示并且图像在查看时样式正确,看起来我已经正确设置了它。
那么为什么当我返回编辑文档时 CKeditor 会删除样式属性呢?谁能看到我缺少的东西吗?
最佳答案
我找到了答案,因此我会将其添加到此处,以防对其他人有所帮助。
我在plugin.js 中的位置
editor.addCommand( 'sbImageDialog', new CKEDITOR.dialogCommand( 'sbImageDialog',
{allowedContent: 'img[src][style]', requiredContent: 'img[src]' }
));
我必须将 allowedContent
属性从 'img[src][style]'
更改为 'img[src][style]{*}'
大括号表示该元素允许具有哪些 css 样式属性。通过输入 *
我允许所有 css 样式属性。
关于javascript - 即使在 allowedContent 中设置,CKeditor 也会删除样式属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24964336/
有谁知道如何让 advancedContentFilter 在 django-ckeditor 配置设置中工作?我试图过滤粘贴在 p 标签中以删除样式属性。我在 settings.py 中使用了以下内
我有一个 ckeditor,其中包含一组用户定义的工具栏。现在,如果我在 config.js 中使用此代码, config.allowedContent = 'img[!src,alt,width,h
我试图在源代码和所见即所得模式之间切换时限制 CKEditor 的 html 编辑行为。目前,当我从源代码切换到所见即所得时,编辑器会删除添加到 的所有属性。标签。它不会对任何其他标签重复此行为。
在创建 CKEditor 实例时,我并没有真正了解 allowedContent 设置的语法。我见过一些用 ; “分隔”元素组的示例,但我找不到为什么需要这样做的解释。 该文档包含一个示例规则,类似于
在我的 Ckeditor 配置中,我有一个自定义的 allowedContent。我不使用 allowedContent:true因为我不想在 span 标签中允许 style 属性 所以这是我的 a
我为 ckeditor 创建了一个自定义图像浏览器/ uploader 插件。我在集成 advanced content filter 时遇到一些问题 基本上发生的事情是我在对话框选项卡上有一个字段,
我正在使用 ckeditor。我想让用户使用他们想要的所有内联样式。 但是当我使用 CKEDITOR.config.allowedContent = true; 时,没有任何变化,ckeditor 将
在 CKEditor 中,配置中有 allowedContent 和 extraAllowedContent 选项。我了解 allowedContent 如何允许您说出 ACF 将留下哪些标签和属性,
我想在 ckeditor 上禁用 ACF,正如许多帖子和文档所建议的那样,我通过以下方式将 allowedcontent 设置为 true,但它仍然过滤掉我的 html。 CKEDITOR.confi
我想我已经阅读了大部分关于此的 SO 问题和 CKEditor 文档,但它对我不起作用。 它应该简单明了,在我的 CKEditor config.js 中,我有这个: CKEDITOR.editorC
我正在使用 ckeditor 4.5.7,我希望用户在页面中插入任意 HTML 代码。目前用户甚至无法插入像 test 这样的标签- 标签自动转换为 保存数据后(这发生在 SharePoint 页面中
我是一名优秀的程序员,十分优秀!