我已安装CKEditor 3.0,它运行良好,但我想禁用自动拼写检查程序 我注意到当我在编辑器中写一些单词时,它设法连接到“svc.spellchecker.net” 进行拼写检查
你知道有什么方法可以阻止这个功能吗?
提前致谢
答案 0 :(得分:11)
您想要的选项是scayt_autoStartup
答案 1 :(得分:11)
答案 2 :(得分:3)
这是我使用的方式:
CKEDITOR.editorConfig = function (config) {
// Disable spellchecker
config.scayt_autoStartup = false;
// Other configurations
config.htmlEncodeOutput = true;
config.enterMode = CKEDITOR.ENTER_BR;
config.shiftEnterMode = CKEDITOR.ENTER_BR;
config.toolbar =
[
['Bold', 'Italic', '-', 'Link', 'Unlink']
];
config.removePlugins = 'elementspath,save,font, maximize, resize, scayt';
config.filebrowserBrowseUrl = '/boDocumentos';
config.filebrowserUploadUrl = '/boDocumentos/upload';
config.filebrowserImageWindowWidth = '640';
config.filebrowserImageWindowHeight = '720';
};
答案 3 :(得分:1)
设置scayt_autoStartup = false;
window.addEvent('domready',function(){
var CKEditor = $jq('textarea.ckEditor');
// CKEditor
CKEditor.ckeditor({
//*
disableNativeSpellChecker:true,
scayt_autoStartup:false,
toolbar:[
['Bold','Italic','Underline','Strike'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Undo','Redo'], ....
答案 4 :(得分:0)
The documentation建议您在CKEDITOR.config中将disableNativeSpellChecker
设置为true。