0
我有這樣的配置:CKEditor的告訴我雙風格工具欄
$(document).ready(function(){
CKEDITOR.replace('editor', {
language : 'ru',
toolbarGroups : [
{ name: 'history', groups: [ 'redo', 'undo' ] },
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'align' ] },
{ name: 'links' },
{ name: 'styles', items: [ 'Font', 'FontSize' ] },
]
});
});
但如果我嘗試在「樣式」設置execatly項目,CKEditor的告訴我的風格雙工具欄:
您是否嘗試過簡單地刪除它們就像你在最後一組做工具欄組應該只定義組,而不是項目?刪除此部分的含義:',項目:['Font','FontSize']' – Nenotlep