我正在尝试从 TinyMCE 4 中删除菜单和状态栏,因为我想设置一个非常基本的编辑器。这可能吗?
TinyMCE 3 的文档似乎不相关,我找不到版本 4 的任何内容。
我查看了源代码,很明显:
tinyMCE.init({
menubar:false,
statusbar: false,
//etc
})
这将删除两者。
您还可以通过指定一串启用的菜单来自定义默认菜单栏的哪些部分可见 - 例如menubar: 'file edit'
您可以像这样定义自己的菜单:
menu : {
test: {title: 'Test Menu', items: 'newdocument'}
},
menubar: 'test'
如果要从顶部删除整个菜单栏
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。
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
如果你想要一个完全干净的文本框,你可以禁用所有的栏,包括“工具栏”:
tinymce.init({
selector:'textarea',
branding: false,
menubar:false,
statusbar: false,
toolbar: false,
});
在社区版中,我认为您不允许隐藏状态栏(由 Tiny 提供支持)品牌部分。
https://www.tiny.cloud/docs-4x/configure/editor-appearance/#branding