123

我正在尝试从 TinyMCE 4 中删除菜单和状态栏,因为我想设置一个非常基本的编辑器。这可能吗?

TinyMCE 3 的文档似乎不相关,我找不到版本 4 的任何内容。

4

5 回答 5

273

我查看了源代码,很明显:

tinyMCE.init({
    menubar:false,
    statusbar: false,
        //etc
})

这将删除两者。

您还可以通过指定一串启用的菜单来自定义默认菜单栏的哪些部分可见 - 例如menubar: 'file edit'

您可以像这样定义自己的菜单:

menu : {    
    test: {title: 'Test Menu', items: 'newdocument'} 
},
menubar: 'test'
于 2013-04-16T09:45:08.413 回答
31

如果要从顶部删除整个菜单栏

tinymce.init({
    menubar: false,

});

但是,如果您想要带有一些子菜单的自定义菜单栏

tinymce.init({
    menu: {
        file: {title: 'File', items: 'newdocument'},
        edit: {title: 'Edit', items: 'undo redo | cut copy paste pastetext | selectall'},
        insert: {title: 'Insert', items: 'link media | template hr'},
        view: {title: 'View', items: 'visualaid'},
        format: {title: 'Format', items: 'bold italic underline strikethrough superscript subscript | formats | removeformat'},
        table: {title: 'Table', items: 'inserttable tableprops deletetable | cell row column'},
        tools: {title: 'Tools', items: 'spellchecker code'}
    }
});

有关更多帮助,请参阅TinyMCE

于 2015-09-21T11:51:56.783 回答
6

So, It is clearly metioned in their docs that to make the values to false.

    tinymce.init({
    menubar: false,
    branding: false,
    statusbar: false,
   })

In the latest update to v5 You can display menubar as such

    tinymce.init({
     menu: {
      edit: { title: 'Edit', items: 'undo redo | cut copy paste pastetext | selectall searchreplace' },
      insert: { title: 'Insert', items: 'image link charmap pagebreak' },
      format: { title: 'Format', items: 'bold italic underline strikethrough superscript subscript | formats | removeformat' },
      table: { title: 'Table', items: 'inserttable tableprops deletetable | cell row column' }
    },
    menubar: 'edit insert format table',
});

see https://www.tiny.cloud/docs/ for more details

于 2019-09-11T07:29:17.187 回答
2

如果你想要一个完全干净的文本框,你可以禁用所有的栏,包括“工具栏”:

tinymce.init({
            selector:'textarea',
            branding: false,
            menubar:false,
            statusbar: false,
            toolbar: false,
        });
于 2021-03-24T22:33:07.157 回答
1

在社区版中,我认为您不允许隐藏状态栏(由 Tiny 提供支持)品牌部分。

https://www.tiny.cloud/docs-4x/configure/editor-appearance/#branding

于 2021-02-24T14:08:49.920 回答