首页 文章

将Spellchecker整合到Tinymce中不起作用

提问于
浏览
2

在我的应用程序中,我使用了tinymce编辑器来处理textareas .

我想为它集成一个拼写检查器,所以我下载了拼写检查器的插件并将其放入插件文件夹中 .

接下来我更改了代码:

<script type="text/javascript">
    tinyMCE.init({
        // General options
        mode : "textareas",
        theme : "advanced",
        plugins : "advlink,paste,spellchecker",

        // Theme options
        theme_advanced_buttons1 : "bold,italic,underline,separator,forecolor,strikethrough,justifyleft,justifycenter,justifyright, justifyfull,bullist,numlist,undo,redo,link,unlink",
        theme_advanced_buttons2 : "spellchecker,cut,copy,paste,pastetext,fontselect,fontsizeselect,code",
        theme_advanced_buttons3 : "",

        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        theme_advanced_resizing : true,
        spellchecker_languages : "+English=en,Swedish=sv",

        // Example content CSS (should be your site CSS)
        content_css : "css/content.css",

        // Drop lists for link/image/media/template dialogs
        template_external_list_url : "lists/template_list.js",
        external_link_list_url : "lists/link_list.js",
        external_image_list_url : "lists/image_list.js",
        media_external_list_url : "lists/media_list.js",

        // Replace values for the template plugin
        template_replace_values : {
            username : "Some User",
            staffid : "991234"
        }
    });
</script>

现在编辑器没有显示,只显示文本区域 . 当我从插件中删除名称拼写检查器时,编辑器已加载 . 这是什么原因?

这里有版本问题吗?

这是tiny_mce_src.js文件中的版本详细信息:

majorVersion : '3',
minorVersion : '1.0.1',
releaseDate : '2008-06-18',

1 回答

  • 1

    可能重复:TinyMCE 4.0.5 spell check not working

    根据我在其他地方发现的情况,拼写检查程序插件由Google服务提供支持 - 该服务已经退役 . 所以此时似乎没有集成的TinyMCE拼写检查解决方案 .

    但是,您可以通过执行以下操作启用浏览器的内置拼写检查程序:

    tinymce.init({
        browser_spellcheck : true,
    });
    

    务必从工具栏和插件列表中删除拼写检查程序 .

相关问题