为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

一只斗牛犬 2023-09-21 18:26:16
我是前端新手,需要使用 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'; 请帮忙
查看完整描述

1 回答

?
精慕HU

TA贡献1845条经验 获得超8个赞

替换CKEDITOR.config.removeButtons = 'Image';

CKEDITOR.config.removePlugins = 'image';
CKEDITOR.removeButtons = "image";

如果需要删除多个插件,请用逗号分隔。

CKEDITOR.config.removePlugins = 'image, spellchecker';
CKEDITOR.removeButtons = "image, spellchecker";


查看完整回答
反对 回复 2023-09-21
  • 1 回答
  • 0 关注
  • 68 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信