如何禁用 ckeditor 3 自动拼写检查器?

发布于 2024-09-04 04:17:31 字数 141 浏览 5 评论 0原文

我已经安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

酒儿 2024-09-11 04:17:31

您想要的选项是 scayt_autoStartup

The option that you want is scayt_autoStartup

千紇 2024-09-11 04:17:31

最好在 config.js 中禁用该插件

config.removePlugins = 'scayt';

Better disable the plugin in config.js

config.removePlugins = 'scayt';

夜司空 2024-09-11 04:17:31

这是我使用的方式:

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';

};

This is the way I've used:

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';

};

偏爱自由 2024-09-11 04:17:31

只需设置 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'], ....

just set 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'], ....
千仐 2024-09-11 04:17:31

文档建议您设置 disableNativeSpellChecker 在 CKEDITOR.config 中设置为 true。

The documentation suggests that you set the disableNativeSpellChecker to true in CKEDITOR.config.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文