我为ckeditor安装了增强的图像插件,并将此代码放在我的页面上:
<script>
CKEDITOR.replace( 'editor1', {
config.extraPlugins: 'image2',
height: 450
} );
</script>
除了使用
之外,富文本区域不再显示<script>
CKEDITOR.replace( 'editor1' );
</script>
不允许使用图片标题功能。可能有什么不对?
答案 0 :(得分:0)
CKEDITOR.replace
中的第二个参数是配置本身。这就是为什么你应该按如下方式定义它:
CKEDITOR.replace( 'editor1', {
extraPlugins: 'image2',
height: 450
} );