编辑 TinyMCE 样式选项

Edit TinyMCE style options

在表单上,​​我使用 TinyMCE 编辑文本区域。 现在我只想在 TinyMCE 中提供 "bold"、"italic" 和 "underline" 选项。 我应该在 tinymce.init();?

中进行哪些设置

查看tinymce fiddle here.

代码如下:

tinymce.init({
    selector: "textarea",             // change textareas into tinymce editors
    plugins: [],                      // no additional plugins needed
    toolbar: "bold italic underline", // only those three buttons
    menubar: false                    // no display of the top menubar
});