1

起初为我糟糕的英语感到抱歉。我的问题是我是 init tinyMCE:

tinyMCE.init({
    mode : "textareas",
    theme : "advanced",
    editor_selector : 'testClass',
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "bottom",
    plugins: "pagebreak,fullscreen,media,advimage,paste,searchreplace,advlink",
    theme_advanced_buttons1 : "save_button,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect,styleselect",
    theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,|,anchor,|,image,|,cleanup,|,help,|,code",
    theme_advanced_buttons3 : "hr,removeformat,|,visualaid,|,sub,sup,|,charmap",
});

但是在页面上我看到样式下拉列表并且当我点击它时它没有打开。请帮忙。我错过了什么或做错了什么?

4

2 回答 2

3

您可以添加style_formats以将样式添加到 TinyMCE 编辑器。例如看这个小提琴

我通常在一个外部 css 文件中定义我的所有样式,并使用 content_css 将它们链接到 TinyMCE。如果您有更多样式规则或者可能在多个地方使用相同的样式规则,这很好。它使 tinyMCE init() 脚本保持干净。有关更多详细信息,请参阅content_css。这是content_css实现的示例小提琴。

于 2013-06-20T14:46:28.400 回答
1

您必须将样式插件添加到插件列表中。

于 2013-06-20T14:43:51.083 回答