TinyMCE按钮没有显示

时间:2014-11-13 00:03:09

标签: javascript tinymce tinymce-3

我在微小的MCE配置中添加了缩进和突出按钮,如下所示:

tinyMCE.init({     // 常规选项     模式:" textareas",     主题:"高级",     editor_selector:cl2,     皮肤:" o2k7",     插件:" advimage,advlink,spellchecker,inlinepopups,contextmenu,paste,noneditable,mergefields",     spellchecker_languages:" + English = en",     //主题选项     theme_advanced_buttons1:"粗体,斜体,下划线,|,forecolor,backcolor,|,fontselect,fontsizeselect,|,code,removeformat,|,spellchecker",theme_advanced_buttons2:" justifyleft,justifycenter,justifyright,justifyfull ,|,bullist,numlist,|,link,unlink,image,hr,|,cut,copy,paste,pasteword,| ,indent,outdent,| ,undo,redo",theme_advanced_buttons3 :"",theme_advanced_toolbar_location:" top",     theme_advanced_toolbar_align:" left",     theme_advanced_statusbar_location:" bottom",     theme_advanced_pa​​th:false,     theme_advanced_resizing:true,cleanup_on_startup:false,     convert_fonts_to_spans:false,     convert_newlines_to_brs:false,     inline_styles:false,     remove_linebreaks:true,     remove_trailing_nbsp:true,     trim_span_elements:false,     content_css:" htmlArea / styles / client.css"     });     }

调查生成的html显示没有包含indent / outdent链接的表格单元格。检查了tinyMCE的图像目录,并且存在按钮的相关图像。是否有其他需要更改的配置设置?

版本是3.5.8。

提前致谢。

1 个答案:

答案 0 :(得分:0)

将indent outdent配置选项添加到页面上编辑器的错误实例时导致的问题。

找到了另一个,一旦添加,就会出现正常现象。

相关问题