我有以下代码使用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());
});
}
});
答案 0 :(得分:0)
我认为您应该使用类似
的空格替换插件值中的逗号插件:“textcolor table”,
我正在使用以下
.... 插件:“链接图像代码粘贴表”, 菜单栏:假, toolbar1:“undo redo | bold italic | link image table | code”, ....