我可以通过使用来禁用scayt
config.removePlugins ='scayt';
但是如何完全禁用拼写检查器。
我已经尝试了以下两个设置,但它们不起作用。
config.removePlugins ='spellchecker';
config.removeButtons ='spellchecker';
我也尝试过
config.disableNativeSpellChecker = true
但没有工作
提前致谢
最佳答案
尝试这个:
CKEDITOR.config.removePlugins='scayt,wsc'
或者只是从
spellchecker
中删除config.js
工具栏组。关于javascript - 如何禁用CKEditor 4.x拼写检查器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25600496/