我正在使用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"
});
有没有人有任何建议来解决这个问题?我也不是在寻找浏览器插件或配置。
答案 0 :(得分:0)
您可以在init
中添加以下代码吗?setup : function(ed) {
ed.on('init', function(evt) {
ed.getBody().setAttribute('spellcheck', true);
});
}