表格控件未显示在TinyMCE上

时间:2014-01-03 15:02:27

标签: javascript tinymce tinymce-4

我有以下代码使用TinyMCE,除了tablecontrols部分外,它们都有效。

谁能看到我出错的地方?

tinymce.init({
    selector: ".wysiwyg",
    plugins: "textcolor,table",
    menubar : false,
    statusbar: false,
    toolbar1: "bold italic underline | numlist bullist outdent indent | alignleft aligncenter alignright alignjustify | link",
    toolbar2: "hr | fontselect | fontsizeselect | forecolor backcolor | tablecontrols",
    setup: function(editor) {
        editor.on('change', function(e) {
            $(".wysiwyg").html(editor.getContent());
        });
    }
});

1 个答案:

答案 0 :(得分:0)

我认为您应该使用类似

的空格替换插件值中的逗号

插件:“textcolor table”,

我正在使用以下

.... 插件:“链接图像代码粘贴表”, 菜单栏:假, toolbar1:“undo redo | bold italic | link image table | code”, ....