在表格上,我与TinyMCE合作编辑textarea' s。 现在我只想提供选项" bold"," italic"和#34;强调"在TinyMCE。 我应该在tinymce.init();?
中进行哪些设置答案 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
});