1

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

是否有类似的方法可以将功能添加到上部菜单 menubar ?

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

menubar: "工具表格式视图插入编辑",

4

1 回答 1

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!!');
         }
      });
   }
});
于 2013-09-02T15:35:47.680 回答