拼写检查在CKEditor中不起作用

拼写检查在CKEditor中不起作用,ckeditor,ckeditor4.x,ckeditor.net,Ckeditor,Ckeditor4.x,Ckeditor.net,拼写检查在我的编辑器中不起作用。我尝试了disablesPellChecker=false,但没有成功。这是我的config.js。我的CKEditor版本是4.5.6,你知道吗 CKEDITOR.editorConfig=函数(配置){ //在此处定义对默认配置的更改。 //有关完整的参考资料,请参见: // http://docs.ckeditor.com/#!/api/CKEDITOR.config config.disableativespellchecker=true; //工具栏组排

拼写检查在我的编辑器中不起作用。我尝试了
disablesPellChecker=false
,但没有成功。这是我的config.js。我的CKEditor版本是4.5.6,你知道吗

CKEDITOR.editorConfig=函数(配置){
//在此处定义对默认配置的更改。
//有关完整的参考资料,请参见:
// http://docs.ckeditor.com/#!/api/CKEDITOR.config
config.disableativespellchecker=true;
//工具栏组排列,针对两个工具栏行进行了优化。
config.toolbarGroups=[
{name:'clipboard',组:['clipboard','undo']},
{name:'编辑',组:['find','selection']},
{name:'links'},
{name:'插入'},
{name:'forms'},
{name:'tools'},
{name:'document',组:['mode','document','doctools']},
{name:'其他人'},
{name:'basicstyles',组:['basicstyles','cleanup']},
{name:'段落',组:['list','indent','blocks','align','bidi']},
{name:'styles'},
{name:'colors'},
{name:'关于'}
];
//在工具栏中使用“下线”作为换行符
//      '/',
//Html编码输出
config.htmlEncodeOutput=true;
config.removePlugins='elementspath,maximize,scayt';
//删除标准插件提供的一些按钮,这些按钮是
//标准工具栏中不需要。
config.removeButtons='Strike,Subscript,Superscript,Source,About,style,Blockquote,Link,Unlink,Anchor,Image,Table,HorizontalRule,SpecialChar';
//设置最常用的块元素。
config.format_标签='p;h1;h2;h3;pre';
//简化对话框窗口。
config.removeDialogTabs='image:advanced;link:advanced';
};

通过将以下代码添加到config.js,集成了浏览器拼写检查

config.disableNativeSpellChecker = false;
config.removePlugins = 'liststyle,tabletools,scayt,menubutton,contextmenu';

按住SHIFT键,然后在文本上单击鼠标右键

此时将显示带有选项的常规关联菜单

在Linux上,您可以使用SHIFT键或CONTROL键

在Mac上,您可以使用SHIFT键或COMMAND键

以下是带和不带修改键的屏幕截图


为什么删除了这么多插件?我猜您只需要删除contextmenu插件?如果按住
CTRL
并右键单击,您将获得上下文菜单。