如何禁用 ckeditor 3 自动拼写检查器?
我已经安装了 CKEditor 3.0,它工作得很好,但我想禁用自动拼写检查器 我注意到当我在编辑器中写一些单词时,它设法连接到“svc.spellchecker.net” 要进行拼写检查,
您知道有什么方法可以停止该功能吗?
提前致谢
I've installed CKEditor 3.0 ,it work nice , but I want to disable the auto spellchecker
I notice when I'm writing some words in the editor it manages to connect to "svc.spellchecker.net"
to make spell check
do you know any way to stop that feature ?
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您想要的选项是 scayt_autoStartup
The option that you want is scayt_autoStartup
最好在 config.js 中禁用该插件
config.removePlugins = 'scayt';
Better disable the plugin in config.js
config.removePlugins = 'scayt';
这是我使用的方式:
};
This is the way I've used:
};
只需设置 scayt_autoStartup = false;
just set scayt_autoStartup = false;
文档建议您设置
disableNativeSpellChecker
在 CKEDITOR.config 中设置为 true。The documentation suggests that you set the
disableNativeSpellChecker
to true in CKEDITOR.config.