CKEDITOR toolbar buttons do not show up

时间:2015-06-25 19:09:29

标签: ckeditor ckeditor4.x

This... CKEDITOR.replace('layout_edit', { toolbar: [ [ 'Undo', 'Redo' ], [ 'Bold', 'Italic', '-', 'RemoveFormat', 'JustifyLeft', 'JustifyCenter', 'JustifyRight' ], [ 'FontSize' ] ] }) ...turns into this... I don't know why the justify options and font size options don't show up.

1 个答案:

答案 0 :(得分:1)

确保包含具有所需插件的CKEDITOR版本。这没有'证明'或' font':

<script src="//cdn.ckeditor.com/4.4.7/standard/ckeditor.js"></script>

试试这个:

<script src="//cdn.ckeditor.com/4.4.7/standard-all/ckeditor.js"></script>