我正在测试添加自定义样式集。因此,在我的代码中,我添加了以下内容(根据说明)
CKEDITOR.stylesSet.add('custom_style', [
{ name: 'No UL Bullets', element: 'ul', styles: { 'list-style-type': 'none' } },
{ name: 'My Custom Inline', element: 'span', attributes: { 'class': 'mine' } }
]);
oEditor.config.stylesSet = 'custom_style';
问题是它覆盖了 CKEditor 附带的其余默认样式。我似乎无法弄清楚如何将我的新样式附加到现有的样式中。有任何想法吗?