在TinyMCE中进行拼写检查需要帮助。我正在使用IE11。当你在文本区域输入任何内容时,我已经编写了下面的代码来进行浏览器拼写检查。它工作。但是,如果我从记事本复制一个句子并粘贴到文本区域,则不会验证所有单词。它只检查最后一个单词的拼写。例如,如果我复制" 这是ordef中的限制",那么我会看到最后一个字" ordef "加下划线(表示错误的拼写错误),但不是“#strong;限制"”。
tinymce.init({
plugins: ["lists paste textcolor colorpicker directionality nonbreaking template"],
paste_text_sticky : true,
paste_retain_style_properties: "all",
toolbar1: "numlist bullist | outdent indent blockquote | alignleft aligncenter alignright alignjustify | forecolor backcolor | bold italic underline strikethrough | fontselect | fontsizeselect | cut copy paste ",
toolbar_items_size: 'small',
menubar:false,
statusbar: false,
selector : "textarea",
height:"300px",
width:"740px",
mode : "textareas",
browser_spellcheck: true,
setup : function(ed) {
ed.on('init', function(evt) {
ed.getBody().setAttribute('spellcheck', true);
});
}
});