删除TinyMCE中“格式”按钮下拉菜单中的“块”

时间:2014-01-09 03:46:39

标签: tinymce

我在tinymce中有这个“格式”工具栏按钮,我只是想知道是否有办法配置它的下拉列表项以及如何。

现在我有“标题”,“内联”,“块”和“对齐”, 我想删除“Blocks”。

提前致谢:)

以下是我要删除的内容的屏幕截图:

tinymce dropdown menu item http://imageshack.com/a/img34/2654/wr2h.png

2 个答案:

答案 0 :(得分:0)

你可以尝试一下吗?

tinymce.init({
menu: { 
    file: {title: 'File', items: 'newdocument'}, 
    edit: {title: 'Edit', items: 'undo redo | cut copy paste | selectall'}, 
    insert: {title: 'Insert', items: '|'}, 
    view: {title: 'View', items: 'visualaid'}, 
    format: {title: 'Format', items: 'bold italic underline strikethrough superscript subscript | formats | removeformat'}, 
    table: {title: 'Table'}, 
    tools: {title: 'Tools'} 
}
});

答案 1 :(得分:0)

我知道这则帖子很旧,但似乎从未提供过答案。下面将为TinyMCE 5.0中的工具栏创建一个自定义格式菜单。

tinymce.init({
style_formats: [
    { title: 'Headers', items: [
      { title: 'Heading 2', block: 'h2' },
      { title: 'Heading 3', block: 'h3' },
      { title: 'Heading 4', block: 'h4' },
      { title: 'Heading 5', block: 'h5' },
      { title: 'Heading 6', block: 'h6' }
      ]
    },
    { title: 'Blocks', items: [
      { title: 'Paragraph', block: 'p' },
      { title: 'Div', block: 'div' },
      { title: 'Blockquote', block: 'blockquote' },
      { title: 'pre', block: 'pre' }
      ]
    }
  ]
});