是否可以在TinyMCE4菜单栏中使用自定义功能和命令?

时间:2013-08-15 10:18:01

标签: tinymce-4

我已经学会了如何在Tiny Toolbar中集成自定义命令 ed.addButton()函数。

是否有类似的方法可以在上菜单中添加功能菜单?菜单栏?

在Tiny Documentation中,我刚刚找到了如何在init函数中使用此代码更改菜单部分的顺序:

菜单栏:"工具表格式视图插入编辑",

1 个答案:

答案 0 :(得分:1)

示例:

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