我正在使用tinymce编辑器,并且有一个编辑菜单栏项目,我想将其移入工具栏,我尝试将其添加到工具栏中,但这显然不起作用:
tinymce.init({
selector: '#content',
paste_data_images: true,
menubar: 'edit',
statusbar: false,
height: 500,
theme: 'modern',
plugins: [
'advlist autolink lists link image charmap print preview hr anchor pagebreak',
'searchreplace wordcount visualblocks visualchars code fullscreen',
'insertdatetime media nonbreaking save table contextmenu directionality',
'emoticons template paste textcolor colorpicker textpattern imagetools'
],
toolbar1: 'bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link | paste',
答案 0 :(得分:0)
正确地说明菜单和工具栏是不同的,所以你不能在工具栏中抛出一个菜单选项(T: Decoder
) - 这是行不通的。
edit
菜单包含多个选项:
Edit
查看TinyMCE文档中的工具栏控件标识符,您会发现大多数(如果不是全部)命令都具有等效的工具栏:
https://www.tinymce.com/docs/advanced/editor-control-identifiers/#toolbarcontrols
您需要将这些控件标识符添加到TinyMCE中的工具栏。