我正在尝试使用ckEditor将javascriptspellchecker集成到网页中(注意我使用的是 ckeditor 3.6 版)。我想用使用 javascriptspellcheck 的新自定义插件替换默认的拼写检查和 SCAYT(键入时进行拼写检查)插件。
我按照 javascriptspellchecker 网站上的示例创建了一个插件,但它不能正常工作。javascriptspellchecker 获取 textarea 的 id 并对它的值运行拼写检查(或在选择 SCAYT 时在输入后将事件处理程序附加到拼写检查)。问题是,当我更改 ckEditor 实例中的文本时,隐藏的文本框似乎没有在后台更新。这意味着我写的插件只检查textarea的原始值,而SCAYT不起作用。
到目前为止我的插件:-
(function () {
//Section 1 : Code to execute when the toolbar button is pressed
var a = {
exec: function (editor) {
$Spelling.SpellCheckInWindow($(editor.element).attr('id'))
}
},
//Section 2 : Create the button and add the functionality to it
b = 'javascriptspellcheck';
CKEDITOR.plugins.add(b, {
init: function (editor) {
editor.addCommand(b, a);
editor.ui.addButton("JavaScriptSpellCheck", {
label: 'Check Spelling',
icon: this.path + "images/spell.png",
command: b
});
}
});
})();
有谁知道是否可以制作一个工作插件?有没有办法强制编辑器更新隐藏的文本区域,或者是否有另一个 DOM 元素可以传递给拼写检查器?
更新:
如果有用,我的插件的 SCAYT 版本使用以下执行功能
exec: function (editor) {
$Spelling.SpellCheckAsYouType($(editor.element).attr('id'))
}
更新 2:
我找到了正常拼写检查的解决方案,我可以在运行拼写检查之前调用 editor.UpdateElement() 并且它可以工作!我不知道为什么,当我用萤火虫检查原始文本区域时,值似乎没有改变。
新的拼写检查插件
(function () {
//Section 1 : Code to execute when the toolbar button is pressed
var a = {
exec: function (editor) {
editor.updateElement();
$Spelling.SpellCheckInWindow($(editor.element).attr('id'));
}
},
//Section 2 : Create the button and add the functionality to it
b = 'javascriptspellcheck';
CKEDITOR.plugins.add(b, {
init: function (editor) {
editor.addCommand(b, a);
editor.ui.addButton("JavaScriptSpellCheck", {
label: 'Check Spelling',
icon: this.path + "images/spell.png",
command: b
});
}
});
})();
我仍然无法让 SCAYT 工作。我找到了一个ckeditor 插件来捕获更改事件,并尝试在每次更改时再次调用 updateElement() 函数。但是这不起作用,有人可以帮忙吗?
我使用 ckeditor onchange 插件的 SCAYT 插件:
exec: function (editor) {
editor.on('change', function (e) { this.updateElement(); });
$Spelling.SpellCheckAsYouType($(editor.element).attr('id'));
}