我使用标准包装。
JS代码的名称为 text :
<script type="text/javascript">
CKEDITOR.replace( 'text', {
toolbar: [
{ name: 'document', items: [ 'Source', '-', 'NewPage', 'Preview', '-', 'Templates' ] }, // Defines toolbar group with name (used to create voice label) and items in 3 subgroups.
[ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ], // Defines toolbar group without name.
'/', // Line break - next group will be placed in new line.
{ name: 'basicstyles', items: [ 'Bold', 'Italic' ] }
]
});
</script>
我在控制台Chrome中遇到错误:
Uncaught TypeError: Cannot read property 'options' of undefined
HTML代码:
<div class="text"><textarea name="text" placeholder="Основной текст..."></textarea></div>
答案 0 :(得分:1)
过去类似的错误有时与丢失/损坏的语言文件有关。清除浏览器缓存并再次加载CKEditor。如果它无法帮助您检查浏览器中的网络选项卡,并查看语言文件是否正确加载。