1

是否可以设置默认打开默认拼写检查器。无需每次都单击工具栏中的按钮?

我在浏览器中使用默认的浏览器拼写检查功能。

setup: function (ed) {
    ed.addCommand('mceSpellCheckRuntime', function() {
        t = ed.plugins.spellchecker;
        if (t.mceSpellCheckRuntimeTimer) {
          window.clearTimeout(t.mceSpellCheckRuntimeTimer);
        }
        t.mceSpellCheckRuntimeTimer = window.setTimeout(function() {
          t._done();
          t._sendRPC('checkWords', [t.selectedLang, t._getWords()], function(r) {
            if (r.length > 0) {
              t.active = 1;
              t._markWords(r);
              ed.nodeChanged();
            }
         });
       }, 3000); //3 seconds
    });


    ed.onInit.add(function(ed){
        ed.pasteAsPlainText = true;

        ed.execCommand('mceSpellCheckRuntime');
    });


    ed.onKeyUp.add(function(ed, e) {
        ed.execCommand('mceSpellCheckRuntime');
    });
},
4

2 回答 2

1

它的安静可能........ :)

试试下面的代码......

ed.onInit.add(function(ed, e) {
  setTimeout(function () {
  tinyMCE.activeEditor.controlManager.setActive('spellchecker', true);  tinymce.execCommand('mceSpellCheck', true);
 }, 1);
});
于 2014-06-03T11:08:22.087 回答
0

不,这是不可能的,因为在 tinymce 中使用拼写检查器有很多可能性。然而,用户可以定义拼写检查器应该检查哪些事件(这就是你已经做过的)。

于 2012-07-09T07:39:52.297 回答