您可以通过使用 TinyMCE 的 theme_advanced_buttons 选项来做到这一点:)
这是 TinyMCE 文档的链接:
按钮主题
我碰巧有一个使用 TinyMCE 的 jQuery 插件的示例,但您也可以使用“stock”tinyMCE 来实现:
$('#bio').tinymce({
script_url : '/js/tiny_mce/tiny_mce.js',
theme : 'advanced',
theme_advanced_buttons1: 'bold,italic,underline,|,undo,redo,|,bullist,numlist',
theme_advanced_buttons2: '',
theme_advanced_buttons3: '',
theme_advanced_buttons4: '',
theme_advanced_toolbar_location: 'bottom',
theme_advanced_toolbar_align: 'center',
});
在这种特殊情况下,我实际上禁用了其他工具栏——但你可以放任何你想要的东西。它理解的按钮记录在这里:
TinyMCE 按钮文档