如何在CKeditor中启用图片标题插件?

时间:2017-10-14 14:23:40

标签: ckeditor

我为ckeditor安装了增强的图像插件,并将此代码放在我的页面上:

<script>
        CKEDITOR.replace( 'editor1', {
            config.extraPlugins: 'image2',
            height: 450
        } );
    </script>

除了使用

之外,富文本区域不再显示
<script> 
CKEDITOR.replace( 'editor1' );
 </script>

不允许使用图片标题功能。可能有什么不对?

1 个答案:

答案 0 :(得分:0)

CKEDITOR.replace中的第二个参数是配置本身。这就是为什么你应该按如下方式定义它:

CKEDITOR.replace( 'editor1', {
    extraPlugins: 'image2',
    height: 450
} );