我是前端新手,需要使用 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";
添加回答
举报
0/150
提交
取消