从 TinyMCE 编辑器隐藏文件编辑插入

Hide File Edit Insert from TinyMCE Editor

我只想从 TinyMCE 编辑器的菜单中删除文件编辑插入视图选项。

我尝试使用检查元素并使用下面的 javascript 代码删除菜单行:

document.getElementById('tinymce-16').style.display = 'none';

但它不起作用。我收到错误

Uncaught TypeError: Cannot read property 'style' of null

其实很简单。您需要指定编辑器初始化时要显示的内容。

HTML

<form>
    <textarea></textarea>
</form>

JS

tinymce.init({
    selector: 'textarea',
    plugins: [
        "code table"
    ],
    menubar: "format table tools",
});

这只会显示格式、table 和工具。看到这个 DEMO