经过多次尝试,失败了。编辑ckeditor

我是前端新手,需要使用 ckeditor 但有一些 mods 这是我的代码


<!DOCTYPE html>

<html>

    <head>

        <meta charset="utf-8">

        <title>CKEditor Example</title>

        <script src="https://cdn.ckeditor.com/4.10.1/standard/ckeditor.js"></script>

    </head>

    <body>

        <textarea name="text_editor"></textarea>


        <script>

            //-------------------------------------

            CKEDITOR.replace( 'text_editor' );

                  width: '70%';

            CKEDITOR.config.removeButtons = 'Image'; 

             //-------------------------------------

        </script>

    </body>

</html>

我需要删除“图像”按钮,但我做不到。


为什么下面的代码不起作用?


CKEDITOR.config.removeButtons = 'Image'; 

请帮忙


一只斗牛犬
浏览 69回答 1
1回答

精慕HU

替换CKEDITOR.config.removeButtons = 'Image'; 为CKEDITOR.config.removePlugins&nbsp;=&nbsp;'image'; CKEDITOR.removeButtons&nbsp;=&nbsp;"image";如果需要删除多个插件,请用逗号分隔。CKEDITOR.config.removePlugins&nbsp;=&nbsp;'image,&nbsp;spellchecker'; CKEDITOR.removeButtons&nbsp;=&nbsp;"image,&nbsp;spellchecker";
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript