3

是否可以在 tinymce 的文件菜单中添加新的菜单项以进行自定义?我找到了编辑或禁用文件菜单的解决方案。IE

tinymce.init({
    selector: "textarea",
    menubar: "edit format"
});
Disable menubar:

tinymce.init({
    selector: "textarea",
    menubar: false
});

但是没有办法定制帽子文件菜单有什么想法吗?

4

1 回答 1

0

可能重复:TinyMCE4 菜单栏中是否可以有自定义功能和命令?

// Adds a custom menu item to the editor that inserts contents when clicked
// The context option allows you to add the menu item to an existing default menu
tinymce.init({
   ...

   setup: function(ed) {
      ed.addMenuItem('example', {
         title: 'My menu item',
         context: 'tools',
         onclick: function() {
            ed.insertContent('Hello world!!');
         }
      });
   }
});
于 2014-12-06T17:01:33.087 回答