我尝试在 Oracle 框架“Endeca v 11.1.0”中配置 CKEDITOR,但出现了问题。我只能像这样配置工具栏:
[
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] },
'/',
{ name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ] },
{ name: 'colors', items: [ 'TextColor', 'BGColor' ] },
{ name: 'tools', items: [ 'Maximize', 'ShowBlocks' ] },
{ name: 'others', items: [ '-' ] },
{ name: 'about', items: [ 'About' ] }
];
而且我无法像我想要的那样配置样式。默认情况下,我有 ckeditor 的 sur 样式,这是正常的。我还没有设置好配置好的style.js。
我想配置特定的样式,我已经阅读了这样的一些文档:http ://docs.ckeditor.com/#!/guide/dev_styles 但我该如何在我的配置中做到这一点:
CKEDITOR.stylesSet.add( 'my_styles', [
// Block-level styles
{ name: 'Blue Title', element: 'h2', styles: { 'color': 'Blue' } },
{ name: 'Red Title' , element: 'h3', styles: { 'color': 'Red' } },
// Inline styles
{ name: 'CSS Style', element: 'span', attributes: { 'class': 'my_style' } },
{ name: 'Marker: Yellow', element: 'span', styles: { 'background-color': 'Yellow' } }
]);
如何仅在工具栏配置中设置特定样式?谢谢帮助