在tinyMCE中自定义文件菜单

时间:2013-05-15 10:09:24

标签: tinymce

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

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

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

但无法改变帽子文件菜单 有什么想法吗?

1 个答案:

答案 0 :(得分:0)

可能重复:Is it possible to have custom Functions and commands in the TinyMCE4 Menubar?

// 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!!');
         }
      });
   }
});