5

cms で tinymce エディターを使用しています。太字、斜体、下線、両端揃えのオプションがある通常のテキスト ツールバーがありますが、フォント ファミリの変更オプションはなく、色の変更さえありません。それを有効にする方法は?

4

3 に答える 3

10

私はこの方法でこれを行いました

tinyMCE.init({
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
    theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
    theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
)};
于 2012-09-03T12:19:43.010 に答える