选项:theme_advanced_styles

这个选项包含一个以分号分隔的列表,内容似乎 class 标题与 class 名的对,用=连接。 class 标题显示在样式下拉列表中 class 名是插入的 class。如果选项没有定义,TinyMCE 会自动从 CSS 中导入。

theme_advanced_styles 选项的使用示例:

tinyMCE.init({
	...
	theme_advanced_styles : "Header 1=header1;Header 2=header2;Header 3=header3;Table Row=tableRow1"
});