TinyMCE浏览器拼写检查

时间:2013-12-14 16:39:53

标签: javascript tinymce tinymce-4

我正在使用TinyMCE,而我正在使用浏览器内置的拼写检查程序。我遇到的问题,我不知道我是否有任何控制权是拼写检查:

  • 不会替换right click -> select new word之后的所有字词
    • 它将取代文件中的一些词语
    • 有些话根本没有改变,浏览器一直说这个单词拼写错误。要修复错误,您需要手动更改拼写。
  • 并不总是表明文字
  • 有错误

以下是我配置编辑器的方法:

tinymce.init({
    selector: "#savedstory",
    theme: "modern",
    height: 450,
    browser_spellcheck: true,
    gecko_spellcheck: true,
    plugins: [
        "advlist autolink lists link image charmap print preview hr anchor pagebreak",
        "searchreplace wordcount visualblocks visualchars code fullscreen",
        "insertdatetime media nonbreaking save table directionality",
        "emoticons template paste textcolor"
    ],
    toolbar1: "insertfile undo redo | styleselect | bold italic underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image media",
    toolbar2: "print preview fullscreen | cut copy paste | removeformat"
});

有没有人有任何建议来解决这个问题?我也不是在寻找浏览器插件或配置。

1 个答案:

答案 0 :(得分:0)

您可以在init

中添加以下代码吗?
setup : function(ed) {
                ed.on('init', function(evt) {
                  ed.getBody().setAttribute('spellcheck', true);
                });
}