必须激活哪些 Internet Explorer 11 安全选项才能在 CKEditor 4.5.4 上使用按钮 "past from word"

What Internet Explorer 11 security options must be activated to use the button "past from word" on CKEditor 4.5.4

使用 Internet Explorer 11,按钮 "past from word" 在 ckeditor 演示 (http://ckeditor.com/demo) 上不起作用:.内容只是直接粘贴,而不是表格。

您知道必须激活什么安全选项才能使用 CKEditor 4.5.4 上的按钮 "past from word" 吗?

Regads

事实上,CKEditor 默认配置为从粘贴的文本中删除字体样式(在大多数情况下这是期望的行为)。

如果您希望"keep"从 Word 粘贴时的样式,您需要为 CKEditor 部署自定义配置。

CKEDITOR.editorConfig = function( config ) {
    config.pasteFromWordRemoveFontStyles=false;
    config.pasteFromWordRemoveStyles=false;
}