编辑TinyMCE样式选项

时间:2015-03-18 15:05:59

标签: tinymce

在表格上,我与TinyMCE合作编辑textarea' s。 现在我只想提供选项" bold"," italic"和#34;强调"在TinyMCE。 我应该在tinymce.init();?

中进行哪些设置

1 个答案:

答案 0 :(得分:1)

请参阅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
});